From 56a27e3f201ee6513bddc6dd88d3f8233c773f7a Mon Sep 17 00:00:00 2001 From: Justus Dietrich Date: Fri, 7 Mar 2025 17:40:38 +0100 Subject: [PATCH] fix: perceptual logic of icons Previously: pinned = crossed out pin public = crossed out eye unpinned = pin hidden = eye Now: pinned = pin public = eye unpinned = crossed out pin hidden = crossed out eye --- client/src/components/Actions/TableActions.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/Actions/TableActions.tsx b/client/src/components/Actions/TableActions.tsx index 6d9460c..12fe336 100644 --- a/client/src/components/Actions/TableActions.tsx +++ b/client/src/components/Actions/TableActions.tsx @@ -57,9 +57,9 @@ export const TableActions = (props: Props): JSX.Element => { tabIndex={0} > {entity.isPinned ? ( - - ) : ( + ) : ( + )} )} @@ -71,9 +71,9 @@ export const TableActions = (props: Props): JSX.Element => { tabIndex={0} > {entity.isPublic ? ( - - ) : ( + ) : ( + )}