diff --git a/src/App.vue b/src/App.vue index 9c32d96b480a..9d7f8633dab3 100644 --- a/src/App.vue +++ b/src/App.vue @@ -13,7 +13,7 @@ - + diff --git a/src/PublicShareAuthSidebar.vue b/src/PublicShareAuthSidebar.vue index 0f07208bca7d..5e9531579031 100644 --- a/src/PublicShareAuthSidebar.vue +++ b/src/PublicShareAuthSidebar.vue @@ -16,7 +16,7 @@ - + diff --git a/src/PublicShareSidebar.vue b/src/PublicShareSidebar.vue index acd111a24762..94f6b49065b2 100644 --- a/src/PublicShareSidebar.vue +++ b/src/PublicShareSidebar.vue @@ -29,7 +29,7 @@ - + diff --git a/src/components/AdminSettings/RecordingServers.vue b/src/components/AdminSettings/RecordingServers.vue index e211fb2a554f..f3df79adb192 100644 --- a/src/components/AdminSettings/RecordingServers.vue +++ b/src/components/AdminSettings/RecordingServers.vue @@ -20,8 +20,8 @@ group> @@ -73,7 +73,7 @@ diff --git a/src/components/BreakoutRoomsEditor/SelectableParticipant.vue b/src/components/BreakoutRoomsEditor/SelectableParticipant.vue index 190f4fecf18b..e81261a095e1 100644 --- a/src/components/BreakoutRoomsEditor/SelectableParticipant.vue +++ b/src/components/BreakoutRoomsEditor/SelectableParticipant.vue @@ -44,21 +44,21 @@ export default { required: true, }, - checked: { + modelValue: { type: Array, required: true, }, }, - emits: ['update:checked'], + emits: ['update:modelValue'], computed: { modelProxy: { get() { - return this.checked + return this.modelValue }, set(value) { - this.$emit('update:checked', value) + this.$emit('update:modelValue', value) }, }, }, diff --git a/src/components/ChatView.vue b/src/components/ChatView.vue index 3f62d3e401f4..62cd88b20d40 100644 --- a/src/components/ChatView.vue +++ b/src/components/ChatView.vue @@ -27,7 +27,7 @@
diff --git a/src/components/ConversationSettings/ConversationSettingsDialog.vue b/src/components/ConversationSettings/ConversationSettingsDialog.vue index ff51ff32a084..31148318fa05 100644 --- a/src/components/ConversationSettings/ConversationSettingsDialog.vue +++ b/src/components/ConversationSettings/ConversationSettingsDialog.vue @@ -7,7 +7,7 @@ @@ -58,7 +58,7 @@ {{ t('spreed', 'Delete chat messages') }} diff --git a/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue b/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue index a2f8f49f05a6..3dfb20822bb1 100644 --- a/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue +++ b/src/components/LeftSidebar/CallPhoneDialog/CallPhoneDialog.vue @@ -21,13 +21,13 @@ v-model="searchText" @keydown.enter="createConversation(participantPhoneItem)" />
diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue index 002c9f9616e3..99932df8f428 100644 --- a/src/components/LeftSidebar/ConversationsList/Conversation.vue +++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue @@ -88,7 +88,7 @@ diff --git a/src/components/SettingsDialog/SettingsDialog.vue b/src/components/SettingsDialog/SettingsDialog.vue index 8fa6a82dac95..acf7b43ce1e0 100644 --- a/src/components/SettingsDialog/SettingsDialog.vue +++ b/src/components/SettingsDialog/SettingsDialog.vue @@ -4,7 +4,7 @@ -->