diff options
author | Kate <26026535+provokateurin@users.noreply.github.com> | 2024-01-22 18:13:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 18:13:03 +0100 |
commit | 64ccc1ef87f095957bb6d169d7099e8c1976bf67 (patch) | |
tree | 4ed229bc979d8d3048ab708a674978b8d868d6d7 /apps/files/src | |
parent | 1a5d5a22e0442e21399f4b676ed4ff1899729246 (diff) | |
parent | d11c6b63c72c4fb5056dcc85e85d6c762d5b7695 (diff) | |
download | nextcloud-server-64ccc1ef87f095957bb6d169d7099e8c1976bf67.tar.gz nextcloud-server-64ccc1ef87f095957bb6d169d7099e8c1976bf67.zip |
Merge pull request #43027 from nextcloud/fix/svg-viewbox-attribute
fix: Use viewBox instead of viewbox in SVGs
Diffstat (limited to 'apps/files/src')
-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') }, |