From 1927f9035a86afadf74a783063196119b113cfd3 Mon Sep 17 00:00:00 2001 From: Idang <91367162+gonenidan@users.noreply.github.com> Date: Tue, 7 Jan 2025 09:36:46 +0100 Subject: [PATCH] chore: fix 'is client' class assignment. (#219) --- 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