Skip to content

Commit

Permalink
fix: workaround faulty ci-only builds
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
ferferga authored Jan 25, 2025
1 parent c37e82f commit b898fd1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/Layout/Navigation/CommitLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
rel="noopener noreferrer">
<template #prepend>
<JIcon
class="i-mdi:github uno-w-10"
" />
class="i-mdi:github uno-w-10" />
</template>
</VListItem>
</template>
Expand Down
1 change: 0 additions & 1 deletion frontend/types/global/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ declare module 'vue' {
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
VFooter: typeof import('vuetify/components')['VFooter']
VForm: typeof import('vuetify/components')['VForm']
VIcon: typeof import('vuetify/components')['VIcon']
VItemGroup: typeof import('vuetify/components')['VItemGroup']
VList: typeof import('vuetify/components')['VList']
VListItem: typeof import('vuetify/components')['VListItem']
Expand Down

0 comments on commit b898fd1

Please sign in to comment.