Skip to content

Commit b898fd1

Browse files
authored
fix: workaround faulty ci-only builds
For some reason, the client throwed an error about incorrect attribute when using Docker buildx's docker-container driver. The build worked flawlessly when using the normal docker build command (which is now an alias to docker buildx build, but with the docker driver) and in the host system using normal commands, and that's why it went unnoticed. Really strange error... Perhaps something encoding related in the outputted files? Either way, this commit fixes it by removing the trailing double quotes from the component!
1 parent c37e82f commit b898fd1

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

frontend/src/components/Layout/Navigation/CommitLink.vue

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
rel="noopener noreferrer">
88
<template #prepend>
99
<JIcon
10-
class="i-mdi:github uno-w-10"
11-
" />
10+
class="i-mdi:github uno-w-10" />
1211
</template>
1312
</VListItem>
1413
</template>

frontend/types/global/components.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ declare module 'vue' {
127127
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
128128
VFooter: typeof import('vuetify/components')['VFooter']
129129
VForm: typeof import('vuetify/components')['VForm']
130-
VIcon: typeof import('vuetify/components')['VIcon']
131130
VItemGroup: typeof import('vuetify/components')['VItemGroup']
132131
VList: typeof import('vuetify/components')['VList']
133132
VListItem: typeof import('vuetify/components')['VListItem']

0 commit comments

Comments
 (0)