скорректировал поведение уставок (tag.min и tag.max) - допустил null значение в db.
This commit is contained in:
@@ -2,8 +2,8 @@ export type TagItemDto = {
|
|||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
tagGroup: string | null;
|
tagGroup: string | null;
|
||||||
min: number;
|
min: number | null;
|
||||||
max: number;
|
max: number | null;
|
||||||
comment: string;
|
comment: string;
|
||||||
unitOfMeasurement: string;
|
unitOfMeasurement: string;
|
||||||
edgeIds: string[];
|
edgeIds: string[];
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ export type TagRow = {
|
|||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
tag_group: string | null;
|
tag_group: string | null;
|
||||||
min: number;
|
min: number | null;
|
||||||
max: number;
|
max: number | null;
|
||||||
comment: string;
|
comment: string;
|
||||||
unit_of_measurement: string;
|
unit_of_measurement: string;
|
||||||
edge_ids: string[];
|
edge_ids: string[];
|
||||||
|
|||||||
Reference in New Issue
Block a user