fix: make CPU meter not go to 11 (#3038)

This commit is contained in:
Alex Inkin
2025-10-31 05:13:39 +07:00
committed by GitHub
parent 5aa9c045e1
commit 57c4a7527e

View File

@@ -90,7 +90,7 @@ export class CpuComponent {
readonly transform = computed(
(value = this.value()?.percentageUsed?.value || '0') =>
`rotate(${60 + (300 * Number.parseFloat(value)) / 100}deg)`,
`rotate(${60 + (240 * Number.parseFloat(value)) / 100}deg)`,
)
readonly labels = LABELS