|
@@ -162,7 +162,9 @@ class StartRecordingDialogContent extends Component<Props> {
|
162
|
162
|
* @returns {React$Component}
|
163
|
163
|
*/
|
164
|
164
|
_renderFileSharingContent() {
|
165
|
|
- if (!this.props.fileRecordingsServiceSharingEnabled) {
|
|
165
|
+ const { fileRecordingsServiceSharingEnabled, isVpaas } = this.props;
|
|
166
|
+
|
|
167
|
+ if (!fileRecordingsServiceSharingEnabled || isVpaas) {
|
166
|
168
|
return null;
|
167
|
169
|
}
|
168
|
170
|
|
|
@@ -247,6 +249,7 @@ class StartRecordingDialogContent extends Component<Props> {
|
247
|
249
|
) : null;
|
248
|
250
|
|
249
|
251
|
const icon = isVpaas ? ICON_SHARE : JITSI_LOGO;
|
|
252
|
+ const label = isVpaas ? t('recording.serviceDescriptionCloud') : t('recording.serviceDescription');
|
250
|
253
|
|
251
|
254
|
return (
|
252
|
255
|
<Container
|
|
@@ -265,7 +268,7 @@ class StartRecordingDialogContent extends Component<Props> {
|
265
|
268
|
..._dialogStyles.text,
|
266
|
269
|
...styles.title
|
267
|
270
|
}}>
|
268
|
|
- { t('recording.serviceDescription') }
|
|
271
|
+ { label }
|
269
|
272
|
</Text>
|
270
|
273
|
{ switchContent }
|
271
|
274
|
</Container>
|