From e4dc09c4e4b9f52a74633bec19b1c4acdd674e81 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 21 Jun 2021 16:17:01 +0200 Subject: Replace settings button icons with material design icons Signed-off-by: Vincent Petry --- .../ConversationSettings/LinkShareSettings.vue | 25 ++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'src/components') diff --git a/src/components/ConversationSettings/LinkShareSettings.vue b/src/components/ConversationSettings/LinkShareSettings.vue index 50107662f..bee9b4b44 100644 --- a/src/components/ConversationSettings/LinkShareSettings.vue +++ b/src/components/ConversationSettings/LinkShareSettings.vue @@ -85,14 +85,22 @@
@@ -106,10 +114,17 @@ import { setConversationPassword, } from '../../services/conversationsService' import { generateUrl } from '@nextcloud/router' +import ClipboardTextOutline from 'vue-material-design-icons/ClipboardTextOutline' +import Email from 'vue-material-design-icons/Email' export default { name: 'LinkShareSettings', + components: { + ClipboardTextOutline, + Email, + }, + data() { return { // The conversation's password @@ -243,8 +258,10 @@ export default {