From b5e48f0b1218c782dbfda3153bc18469fc4b0666 Mon Sep 17 00:00:00 2001 From: SeongHyun Kim Date: Mon, 23 Mar 2026 10:41:57 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20PopCardListV2Component=20nullish=20coale?= =?UTF-8?q?scing=20=EC=97=B0=EC=82=B0=EC=9E=90=20=EA=B4=84=ED=98=B8=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20SWC=20=EB=B9=8C=EB=8D=94=EC=97=90=EC=84=9C?= =?UTF-8?q?=20=3F=3F=20=EC=99=80=20||=20=ED=98=BC=EC=9A=A9=20=EC=8B=9C=20?= =?UTF-8?q?=EB=AA=85=EC=8B=9C=EC=A0=81=20=EA=B4=84=ED=98=B8=EB=A5=BC=20?= =?UTF-8?q?=EC=9A=94=EA=B5=AC=ED=95=98=EB=8A=94=20=EB=AC=B8=EB=B2=95=20?= =?UTF-8?q?=EC=97=90=EB=9F=AC=EB=A5=BC=20=EC=88=98=EC=A0=95=ED=95=9C?= =?UTF-8?q?=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pop-components/pop-card-list-v2/PopCardListV2Component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/lib/registry/pop-components/pop-card-list-v2/PopCardListV2Component.tsx b/frontend/lib/registry/pop-components/pop-card-list-v2/PopCardListV2Component.tsx index 88375327..f5156672 100644 --- a/frontend/lib/registry/pop-components/pop-card-list-v2/PopCardListV2Component.tsx +++ b/frontend/lib/registry/pop-components/pop-card-list-v2/PopCardListV2Component.tsx @@ -441,7 +441,7 @@ export function PopCardListV2Component({ ...row, __processFlow__: updatedFlow, [VIRTUAL_SUB_STATUS]: String(row[VIRTUAL_SUB_STATUS] ?? row.__process_status ?? matched.status), - [VIRTUAL_SUB_SEMANTIC]: String(row[VIRTUAL_SUB_SEMANTIC] ?? matched.semantic || "pending"), + [VIRTUAL_SUB_SEMANTIC]: String(row[VIRTUAL_SUB_SEMANTIC] ?? (matched.semantic || "pending")), [VIRTUAL_SUB_PROCESS]: String(row[VIRTUAL_SUB_PROCESS] ?? matched.processName), [VIRTUAL_SUB_SEQ]: row[VIRTUAL_SUB_SEQ] ?? matched.seqNo, } as RowData;