mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
fix: make CPU meter not go to 11 (#3038)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user