File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/components/ConversationSettings Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2828 container =" #content-vue" >
2929 <!-- description -->
3030 <AppSettingsSection
31+ v-if =" showDescription"
3132 :title =" t('spreed', 'Description')" >
3233 <Description
33- v-if =" showDescription"
3434 :editable =" canFullModerate"
3535 :description =" description"
3636 :editing =" isEditingDescription"
@@ -151,7 +151,9 @@ export default {
151151 },
152152
153153 canFullModerate () {
154- return this .participantType === PARTICIPANT .TYPE .OWNER || this .participantType === PARTICIPANT .TYPE .MODERATOR
154+ return (this .participantType === PARTICIPANT .TYPE .OWNER
155+ || this .participantType === PARTICIPANT .TYPE .MODERATOR )
156+ && this .conversation .type !== CONVERSATION .TYPE .ONE_TO_ONE
155157 },
156158
157159 canDeleteConversation () {
You can’t perform that action at this time.
0 commit comments