diff options
Diffstat (limited to 'apps/files/src/components/FileEntry/FavoriteIcon.vue')
-rw-r--r-- | apps/files/src/components/FileEntry/FavoriteIcon.vue | 2 |
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') }, |