Browse Source

Merge pull request #10763 from nextcloud/fix/noid/new_conversation_creation

fix(NewGroupConversation): minor fix
pull/10772/head
Dorra 2 years ago
committed by GitHub
parent
commit
7820c3dc30
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/ConversationSettings/ConversationAvatarEditor.vue
  2. 6
      src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue

2
src/components/ConversationSettings/ConversationAvatarEditor.vue

@ -238,6 +238,8 @@ export default {
},
},
expose: ['saveAvatar'],
methods: {
activateLocalFilePicker() {
// Set to null so that selecting the same file will trigger the change event

6
src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue

@ -20,9 +20,9 @@
-->
<template>
<div class="wrapper">
<div v-if="modal" class="wrapper">
<!-- New group form -->
<NcModal v-if="modal && page !== 2"
<NcModal v-show=" page !== 2"
class="conversation-form"
:container="container"
@close="closeModal">
@ -118,7 +118,7 @@
</NcModal>
<!-- Third page : this is the confirmation page-->
<NcModal v-else-if="page === 2"
<NcModal v-if="page === 2"
:container="container"
@close="closeModal">
<NcEmptyContent>

Loading…
Cancel
Save