summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-11-16 13:16:19 +0100
committerJoas Schilling <coding@schilljs.com>2022-11-16 13:16:19 +0100
commit9150b41949fcd520a29ae754dfb436a300b538b9 (patch)
treed63a1e391a0761de865242fdf2b5a6c6cd046796
parentadb059707114776016c2effddeb876317fd1000b (diff)
fixup! Added parameter to disallow creating of rooms with public access
-rw-r--r--src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue b/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
index 33460e4fb..a5614692a 100644
--- a/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
+++ b/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
@@ -46,7 +46,7 @@
<template v-if="page === 0">
<SetConversationName v-model="conversationNameInput"
@click-enter="handleEnter" />
- <NcCheckboxRadioSwitch :checked.sync="isPublic" v-if="publicRoomsEnabled">
+ <NcCheckboxRadioSwitch v-if="publicRoomsEnabled" :checked.sync="isPublic">
{{ t('spreed', 'Allow guests to join via link') }}
</NcCheckboxRadioSwitch>
<!-- Password protection -->