summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2023-12-06 14:09:09 +0100
committerMarcel Klehr <mklehr@gmx.net>2024-01-18 09:11:21 +0100
commitfa2cf8d80538348b9a9c969f350ae49e2260b80c (patch)
tree863c4a3b33c1014122354d87f02ca8f27adde7e9 /core/src
parent08801969ea6adeb505a91562b0b6f65317e47fc1 (diff)
downloadnextcloud-server-fa2cf8d80538348b9a9c969f350ae49e2260b80c.tar.gz
nextcloud-server-fa2cf8d80538348b9a9c969f350ae49e2260b80c.zip
fix(Users/Quota setting): Prevent floating point value from getting truncated in locales other than english
fixes #18468 Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'core/src')
-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>