From 9ee4e4d0aacd13e0bea68bca197733d4ca266fd4 Mon Sep 17 00:00:00 2001 From: Delirium Date: Fri, 5 Apr 2024 11:22:46 +0200 Subject: [PATCH] fix ui: fix thermal condition value type (#2042) --- frontend/app/types/filter/newFilter.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/app/types/filter/newFilter.js b/frontend/app/types/filter/newFilter.js index 0084d1e39..f2c91f80a 100644 --- a/frontend/app/types/filter/newFilter.js +++ b/frontend/app/types/filter/newFilter.js @@ -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" } ], }, {