From 08a274692142005abaaea1d43cc2fef0692aa9ef Mon Sep 17 00:00:00 2001 From: Athou Date: Fri, 19 May 2023 10:32:21 +0200 Subject: [PATCH] restore entry selection indicator --- commafeed-client/src/components/content/FeedEntry.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commafeed-client/src/components/content/FeedEntry.tsx b/commafeed-client/src/components/content/FeedEntry.tsx index cba7a40d..99dd8b85 100644 --- a/commafeed-client/src/components/content/FeedEntry.tsx +++ b/commafeed-client/src/components/content/FeedEntry.tsx @@ -63,7 +63,8 @@ const useStyles = createStyles((theme, props: FeedEntryProps & { viewMode?: View } if (props.showSelectionIndicator) { - styles.paper.borderLeftColor = theme.colorScheme === "dark" ? theme.colors.orange[4] : theme.colors.orange[6] + const borderLeftColor = theme.colorScheme === "dark" ? theme.colors.orange[4] : theme.colors.orange[6] + styles.paper.borderLeftColor = `${borderLeftColor} !important` } return styles