From 369220fb1f7e48bcaaa86653cbc3aea3277b5e7d Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 1 Sep 2025 09:14:00 +0000 Subject: (대표님) sedp get tag 오류 수정(tagClassId if 절 추가) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/sedp/get-form-tags.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib') diff --git a/lib/sedp/get-form-tags.ts b/lib/sedp/get-form-tags.ts index ef3a390d..310ef486 100644 --- a/lib/sedp/get-form-tags.ts +++ b/lib/sedp/get-form-tags.ts @@ -684,6 +684,11 @@ export async function importTagsFromSEDP( tagUpdates.class = tagRecord.class; hasTagUpdates = true; } + if (existingTagRecord.tagClassId !== tagRecord.tagClassId) { + tagUpdates.tagClassId = tagRecord.tagClassId; + hasTagUpdates = true; + } + if (existingTagRecord.description !== tagRecord.description) { tagUpdates.description = tagRecord.description; hasTagUpdates = true; -- cgit v1.2.3