Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2021-09-02 14:55:01 +0300
committermarco <marcoambrosini@pm.me>2021-09-02 14:55:01 +0300
commit8fd61822eb5e1ce08ded115bffc82edecb74fc84 (patch)
tree3be7c581346a1422235ca96a74b1252ea5f82acb /src
parenta74ca030a6f55b56b3f0ae17ac564742bff8c348 (diff)
Add create conversation button
Signed-off-by: marco <marcoambrosini@pm.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue b/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
index 5bcdc688a..b9e29e656 100644
--- a/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
+++ b/src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
@@ -89,6 +89,13 @@
class="navigation">
<!-- First page -->
<button
+ v-if="page===0 && isPublic"
+ class="navigation__button navigation__button-left "
+ :disabled="disabled"
+ @click="handleCreateConversation">
+ {{ t('spreed', 'Create conversation') }}
+ </button>
+ <button
v-if="page===0"
class="navigation__button navigation__button-right primary"
:disabled="disabled"