summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-08-13 22:21:08 +0200
committerGitHub <noreply@github.com>2022-08-13 22:21:08 +0200
commit9f0da1b8ddaa59f8e093c64290684c8888411593 (patch)
tree067e74fdff8566f621511883f1fce580f37a6c0e
parent02953e2efa9bb2a135b1383410b6c5e6ccb6629d (diff)
parent71526b3b52f8f548361f241d895c9fd28060c6f3 (diff)
Merge pull request #7738 from nextcloud/fix-icon-size-type
Fix icon size type
-rw-r--r--src/components/ConversationSettings/Matterbridge/MatterbridgeSettings.vue2
-rw-r--r--src/components/LeftSidebar/NewGroupConversation/SetContacts/ContactSelectionBubble/ContactSelectionBubble.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ConversationSettings/Matterbridge/MatterbridgeSettings.vue b/src/components/ConversationSettings/Matterbridge/MatterbridgeSettings.vue
index 887c582c1..acb2af4cd 100644
--- a/src/components/ConversationSettings/Matterbridge/MatterbridgeSettings.vue
+++ b/src/components/ConversationSettings/Matterbridge/MatterbridgeSettings.vue
@@ -71,7 +71,7 @@
:aria-label="t('spreed', 'Show Matterbridge log')"
@click="showLogContent">
<template #icon>
- <Message size="20" />
+ <Message :size="20" />
</template>
</ButtonVue>
<Modal v-if="logModal"
diff --git a/src/components/LeftSidebar/NewGroupConversation/SetContacts/ContactSelectionBubble/ContactSelectionBubble.vue b/src/components/LeftSidebar/NewGroupConversation/SetContacts/ContactSelectionBubble/ContactSelectionBubble.vue
index 11786bc1d..e507be0ff 100644
--- a/src/components/LeftSidebar/NewGroupConversation/SetContacts/ContactSelectionBubble/ContactSelectionBubble.vue
+++ b/src/components/LeftSidebar/NewGroupConversation/SetContacts/ContactSelectionBubble/ContactSelectionBubble.vue
@@ -35,7 +35,7 @@
:aria-label="removeLabel"
@click="removeParticipantFromSelection(participant)">
<template #icon>
- <Close size="16" />
+ <Close :size="16" />
</template>
</ButtonVue>
</div>