From 072a982b5a2c1dff1d8135285a417fb949d88f4d Mon Sep 17 00:00:00 2001 From: kyy Date: Tue, 16 Jun 2026 16:03:39 +0900 Subject: [PATCH] =?UTF-8?q?recent=20changes=20=EA=B4=80=EA=B3=84=20?= =?UTF-8?q?=EC=83=81=EC=84=B8=20=ED=83=80=EC=9E=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/features/overview/recentClientChanges.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/devfront/src/features/overview/recentClientChanges.ts b/devfront/src/features/overview/recentClientChanges.ts index c5930c27..b331346d 100644 --- a/devfront/src/features/overview/recentClientChanges.ts +++ b/devfront/src/features/overview/recentClientChanges.ts @@ -274,21 +274,23 @@ export function buildRecentClientChangeDetails( } if (action === "ADD_RELATION" || action === "REMOVE_RELATION") { - const source = sourceDetails; + const source = sourceDetails as Record; + const relation = source.relation; + const subject = source.subject; return [ - ...(source.relation + ...(typeof relation === "string" && relation ? [ { label: getRecentClientFieldLabel("relation"), - value: formatAuditValue(source.relation), + value: formatAuditValue(relation), }, ] : []), - ...(source.subject + ...(typeof subject === "string" && subject ? [ { label: getRecentClientFieldLabel("subject"), - value: formatAuditValue(source.subject), + value: formatAuditValue(subject), }, ] : []),