Skip to content

Commit

Permalink
disable chunking
Browse files Browse the repository at this point in the history
  • Loading branch information
ferferga authored Jan 25, 2025
1 parent ef69d8c commit e17ecc9
Showing 1 changed file with 2 additions and 1 deletion.
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 e17ecc9

Please sign in to comment.