Skip to content

Commit

Permalink
Closes #219 - "Archived" items greyed in asset tree view
Browse files Browse the repository at this point in the history
  • Loading branch information
lrasmus committed Nov 16, 2024
1 parent f1151c7 commit d4ece6c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/components/AssetTree/AssetNode/AssetNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ const getNodeColor = (node) => {
if (!node || !node.attributes) {
return '#000';
}

if (node.attributes.archived) {
return "#777";
}
}

const getNodeFontWeight = (node) => {
Expand Down

0 comments on commit d4ece6c

Please sign in to comment.