From 2bd8d7341a5daaf46d460ca0458e5c0f5909557c Mon Sep 17 00:00:00 2001 From: Idan Gonen Date: Tue, 7 Jan 2025 09:30:35 +0100 Subject: [PATCH] chore: fix 'is client' class assignment. --- lib/components/Table/exports/cells/NodeCell/NodeCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/Table/exports/cells/NodeCell/NodeCell.tsx b/lib/components/Table/exports/cells/NodeCell/NodeCell.tsx index 2f1d0e5f..ebd163b9 100644 --- a/lib/components/Table/exports/cells/NodeCell/NodeCell.tsx +++ b/lib/components/Table/exports/cells/NodeCell/NodeCell.tsx @@ -22,7 +22,7 @@ function NodeCell(props: ExtendedCellProps) { const isBackendClasses = clsx({ 'is-backend': isBackend, - 'is-client': isBackend + 'is-client': !isBackend }) const formattedRoles = roles?.length