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 Vue library is built in a faulty way when using
Docker buildx's docker-container driver. The build works flawlessly
when using the normal docker build command (which is now an alias to
docker buildx buiold, but with the docker driver) and in the host system
using normal commands.

Really strange error...
  • Loading branch information
ferferga authored Jan 25, 2025
1 parent 8683596 commit 174dd0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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
1 change: 1 addition & 0 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export default defineConfig({
/**
* See main.ts for an explanation of this target
*/
minify: false,
target: 'esnext',
cssCodeSplit: true,
cssMinify: 'lightningcss',
Expand Down
3 changes: 2 additions & 1 deletion packages/ui-toolkit/src/components/JProgressCircular.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
role="progressbar"
aria-valuemin="0"
aria-valuemax="100"
:aria-valuenow="indeterminate || !model ? undefined : Math.max(0, Math.min(model, 100))">
:aria-valuenow="indeterminate || !model ? undefined : Math.max(0, Math.min(model, 100))"
viewBox="0 0 100 100">
<circle
class="j-progress-circular__underlay"
fill="transparent"
Expand Down

0 comments on commit 174dd0a

Please sign in to comment.