diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-01 09:14:00 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-01 09:14:00 +0000 |
| commit | 369220fb1f7e48bcaaa86653cbc3aea3277b5e7d (patch) | |
| tree | 0cb785238e1c58dad759a5d08960d00d36293aa8 | |
| parent | 18954df6565108a469fb1608ea3715dd9bb1b02d (diff) | |
(대표님) sedp get tag 오류 수정(tagClassId if 절 추가)
| -rw-r--r-- | lib/sedp/get-form-tags.ts | 5 |
1 files changed, 5 insertions, 0 deletions
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; |
