fix(recording): support passing styles in firefox
Using an array of styles in Firefox causes an error that triggers jitsi-meet to redirect to a static page.
This commit is contained in:
parent
877cea59e7
commit
d872728966
|
@ -144,10 +144,10 @@ class StartRecordingDialogContent extends Component<Props> {
|
|||
style = { styles.header }>
|
||||
<Text
|
||||
className = 'recording-title'
|
||||
style = { [
|
||||
_dialogStyles.text,
|
||||
styles.title
|
||||
] }>
|
||||
style = {{
|
||||
..._dialogStyles.text,
|
||||
...styles.title
|
||||
}}>
|
||||
{ t('recording.authDropboxText') }
|
||||
</Text>
|
||||
<Switch
|
||||
|
|
Loading…
Reference in New Issue