fix ui: fix thermal condition value type (#2042)

This commit is contained in:
Delirium 2024-04-05 11:22:46 +02:00 committed by GitHub
parent 6df9458f6c
commit 9ee4e4d0aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -752,10 +752,10 @@ export const mobileConditionalFilters = [
operatorOptions: filterOptions.getOperatorsByKeys(['is']),
icon: 'filters/cpu-load',
options: [
{ label: 'nominal', value: 0 },
{ label: 'warm', value: 1 },
{ label: 'hot', value: 2 },
{ label: 'critical', value: 3 }
{ label: 'nominal', value: "0" },
{ label: 'warm', value: "1" },
{ label: 'hot', value: "2" },
{ label: 'critical', value: "3" }
],
},
{