aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/components/UserMenu/UserMenuEntry.vue
diff options
context:
space:
mode:
authorGrigorii K. Shartsev <me@shgk.me>2023-10-18 11:40:41 +0200
committerGrigorii K. Shartsev <me@shgk.me>2023-10-19 18:47:02 +0200
commit776f5da83112e1847f97cacb45822f4096f877ca (patch)
treecda3a6592adc34143e68a3f2878bba6bdcc44c37 /core/src/components/UserMenu/UserMenuEntry.vue
parentf4e3f0965426e251affbbf9398d8b4165ba84074 (diff)
downloadnextcloud-server-776f5da83112e1847f97cacb45822f4096f877ca.tar.gz
nextcloud-server-776f5da83112e1847f97cacb45822f4096f877ca.zip
fix(core): do not assign all navigation entry properties as html attributes
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'core/src/components/UserMenu/UserMenuEntry.vue')
-rw-r--r--core/src/components/UserMenu/UserMenuEntry.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/UserMenu/UserMenuEntry.vue b/core/src/components/UserMenu/UserMenuEntry.vue
index 43f65fa9fdb..8f09137256c 100644
--- a/core/src/components/UserMenu/UserMenuEntry.vue
+++ b/core/src/components/UserMenu/UserMenuEntry.vue
@@ -30,11 +30,11 @@
<NcLoadingIcon v-if="loading"
class="menu-entry__loading-icon"
:size="18" />
- <img v-else :src="cachedIcon" alt="" />
+ <img v-else :src="cachedIcon" alt="">
{{ name }}
</a>
<button v-else>
- <img :src="cachedIcon" alt="" />
+ <img :src="cachedIcon" alt="">
{{ name }}
</button>
</li>