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
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-07-15 10:43:12 +0300
committerGitHub <noreply@github.com>2022-07-15 10:43:12 +0300
commite166907fc418fcb8be203c86a99b2a24d3f666c0 (patch)
treeda729cdf2768183664e704657ed8455d314793cf /src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
parentb5b387f6b00d84d1f3e9a4fe63749f28f1725d68 (diff)
parentce52cfb857fc7741d665ce07c1bb633d615be4ce (diff)
Merge pull request #7600 from nextcloud/ugfix/noid/fix-html-validation-of-material-design-icons
Fix HTML validation of material design icons
Diffstat (limited to 'src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue20
1 files changed, 5 insertions, 15 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 463fdb023..8a8673e09 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -133,36 +133,28 @@
:close-after-click="true"
@click="applyDefaultPermissions">
<template #icon>
- <LockReset :size="20"
- title=""
- decorative />
+ <LockReset :size="20" />
</template>
{{ t('spreed', 'Reset custom permissions') }}
</ActionButton>
<ActionButton :close-after-click="true"
@click="grantAllPermissions">
<template #icon>
- <LockOpenVariant :size="20"
- title=""
- decorative />
+ <LockOpenVariant :size="20" />
</template>
{{ t('spreed', 'Grant all permissions') }}
</ActionButton>
<ActionButton :close-after-click="true"
@click="removeAllPermissions">
<template #icon>
- <Lock :size="20"
- title=""
- decorative />
+ <Lock :size="20" />
</template>
{{ t('spreed', 'Remove all permissions') }}
</ActionButton>
<ActionButton :close-after-click="true"
@click="showPermissionsEditor">
<template #icon>
- <Pencil :size="20"
- title=""
- decorative />
+ <Pencil :size="20" />
</template>
{{ t('spreed', 'Edit permissions') }}
</ActionButton>
@@ -177,9 +169,7 @@
:close-after-click="true"
@click="sendCallNotification">
<template #icon>
- <Bell :size="20"
- title=""
- decorative />
+ <Bell :size="20" />
</template>
{{ t('spreed', 'Send call notification') }}
</ActionButton>