From 476ddeac41c79f41db0de901cf2e271bea50a299 Mon Sep 17 00:00:00 2001 From: tmoldovan8x8 <62697631+tmoldovan8x8@users.noreply.github.com> Date: Mon, 20 Dec 2021 08:41:29 +0200 Subject: [PATCH] fix(rn, recording) adds _toggleScreenshotCapture function to AbstractStartRecordingDialog --- .../Recording/AbstractStartRecordingDialog.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/react/features/recording/components/Recording/AbstractStartRecordingDialog.js b/react/features/recording/components/Recording/AbstractStartRecordingDialog.js index 4028281fc..a06b79e23 100644 --- a/react/features/recording/components/Recording/AbstractStartRecordingDialog.js +++ b/react/features/recording/components/Recording/AbstractStartRecordingDialog.js @@ -339,11 +339,17 @@ class AbstractStartRecordingDialog extends Component { return true; } - /** - * To be overwritten by web component. - */ _toggleScreenshotCapture:() => void; + /** + * Toggles screenshot capture feature. + * + * @returns {void} + */ + _toggleScreenshotCapture() { + // To be implemented by subclass. + } + /** * Renders the platform specific dialog content. *