mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
fix: enable chat style toggle
Signed-off-by: Dorra Jaouad <dorra.jaoued7@gmail.com>
This commit is contained in:
parent
1314f4c583
commit
4d7cbd531c
1 changed files with 3 additions and 2 deletions
|
|
@ -61,9 +61,8 @@
|
|||
:label="t('spreed', 'Compact conversations list')"
|
||||
:disabled="appearanceLoading"
|
||||
@update:model-value="toggleConversationsListStyle" />
|
||||
<!-- FIXME: remove v-if after implementing split view -->
|
||||
<NcFormBoxSwitch
|
||||
v-if="false"
|
||||
v-if="supportChatStyle"
|
||||
:model-value="chatSplitViewEnabled"
|
||||
:label="t('spreed', 'Show your chat in split view')"
|
||||
:disabled="chatAppearanceLoading"
|
||||
|
|
@ -184,6 +183,7 @@ const supportTypingStatus = getTalkConfig('local', 'chat', 'typing-privacy') !==
|
|||
const supportStartWithoutMedia = getTalkConfig('local', 'call', 'start-without-media') !== undefined
|
||||
const supportConversationsListStyle = getTalkConfig('local', 'conversations', 'list-style') !== undefined
|
||||
const supportDefaultBlurVirtualBackground = getTalkConfig('local', 'call', 'blur-virtual-background') !== undefined
|
||||
const supportChatStyle = getTalkConfig('local', 'chat', 'style') !== undefined
|
||||
|
||||
export default {
|
||||
name: 'SettingsDialog',
|
||||
|
|
@ -219,6 +219,7 @@ export default {
|
|||
supportStartWithoutMedia,
|
||||
supportConversationsListStyle,
|
||||
supportDefaultBlurVirtualBackground,
|
||||
supportChatStyle,
|
||||
actorStore,
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue