We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34696e commit fe366deCopy full SHA for fe366de
charts/ui/Chart.yaml
@@ -4,8 +4,8 @@ description: A Helm chart for deploying Unikorn UI
4
5
type: application
6
7
-version: v1.0.0
8
-appVersion: v1.0.0
+version: v1.1.0-rc1
+appVersion: v1.1.0-rc1
9
10
icon: https://assets.unikorn-cloud.org/assets/images/logos/dark-on-light/icon.png
11
src/routes/(shell)/+page.svelte
@@ -31,7 +31,7 @@
31
<div class="flex items-center gap-4">
32
<!-- the default is to treat the value as a pencentage -->
33
<ProgressRing
34
- value={quota.quantity <= 0 ? 0 : (quota.used / quota.quantity) * 100}
+ value={Math.round(quota.quantity <= 0 ? 0 : (quota.used / quota.quantity) * 100)}
35
showLabel
36
trackStroke="stroke-primary-500/20"
37
strokeWidth="0.75rem"
0 commit comments