Скорректировал getMetricStatus - метод, который влиял на отображаемый статус показателя.

This commit is contained in:
Первов Артем
2026-06-21 03:40:33 +03:00
parent 61ab9eb37a
commit 638eaea5fa
2 changed files with 11 additions and 9 deletions

View File

@@ -2,8 +2,8 @@ export type TagItem = {
id: string;
name: string;
tagGroup: string | null;
min: number;
max: number;
min: number | null;
max: number | null;
comment: string;
unitOfMeasurement: string;
edgeIds: string[];