aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/FileEntry/FavoriteIcon.vue
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-01-22 16:37:03 +0100
committerprovokateurin <kate@provokateurin.de>2024-01-22 16:39:06 +0100
commit958f18c37be7aa2811e5f90264095909cd50fd75 (patch)
treea2f0db52313c3f5a484ab345780a75e5e6901a28 /apps/files/src/components/FileEntry/FavoriteIcon.vue
parent1891ae121d80758ffaf537dd4d4fffbaed3eef00 (diff)
downloadnextcloud-server-958f18c37be7aa2811e5f90264095909cd50fd75.tar.gz
nextcloud-server-958f18c37be7aa2811e5f90264095909cd50fd75.zip
fix: Use viewBox instead of viewbox in SVGs
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/files/src/components/FileEntry/FavoriteIcon.vue')
-rw-r--r--apps/files/src/components/FileEntry/FavoriteIcon.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry/FavoriteIcon.vue b/apps/files/src/components/FileEntry/FavoriteIcon.vue
index 2d3373d7b42..40eff17fe9b 100644
--- a/apps/files/src/components/FileEntry/FavoriteIcon.vue
+++ b/apps/files/src/components/FileEntry/FavoriteIcon.vue
@@ -53,7 +53,7 @@ export default defineComponent({
},
async mounted() {
await this.$nextTick()
- // MDI default viewbox is "0 0 24 24" but we add a stroke of 10px so we must adjust it
+ // MDI default viewBox is "0 0 24 24" but we add a stroke of 10px so we must adjust it
const el = this.$el.querySelector('svg')
el?.setAttribute?.('viewBox', '-4 -4 30 30')
},