From ce493f8fb63d40c865450ba71e0a3f5bca0f8899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=BE=D0=B2=20=D0=90=D1=80=D1=82?= =?UTF-8?q?=D0=B5=D0=BC?= Date: Sun, 21 Jun 2026 03:41:52 +0300 Subject: [PATCH] =?UTF-8?q?=D1=81=D0=BA=D0=BE=D1=80=D1=80=D0=B5=D0=BA?= =?UTF-8?q?=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BB=20=D0=BF=D0=BE=D0=B2?= =?UTF-8?q?=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=83=D1=81=D1=82=D0=B0?= =?UTF-8?q?=D0=B2=D0=BE=D0=BA=20(tag.min=20=D0=B8=20tag.max)=20-=20=D0=B4?= =?UTF-8?q?=D0=BE=D0=BF=D1=83=D1=81=D1=82=D0=B8=D0=BB=20null=20=D0=B7?= =?UTF-8?q?=D0=BD=D0=B0=D1=87=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B2=20db.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tag/dto/tag-response.dto.ts | 4 ++-- src/tag/tag.types.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tag/dto/tag-response.dto.ts b/src/tag/dto/tag-response.dto.ts index 6a7f94d..d9f9f8a 100644 --- a/src/tag/dto/tag-response.dto.ts +++ b/src/tag/dto/tag-response.dto.ts @@ -2,8 +2,8 @@ export type TagItemDto = { id: string; name: string; tagGroup: string | null; - min: number; - max: number; + min: number | null; + max: number | null; comment: string; unitOfMeasurement: string; edgeIds: string[]; diff --git a/src/tag/tag.types.ts b/src/tag/tag.types.ts index b0357b3..751f007 100644 --- a/src/tag/tag.types.ts +++ b/src/tag/tag.types.ts @@ -2,8 +2,8 @@ export type TagRow = { id: string; name: string; tag_group: string | null; - min: number; - max: number; + min: number | null; + max: number | null; comment: string; unit_of_measurement: string; edge_ids: string[];