Skip to content

Commit

Permalink
fix cy tests
Browse files Browse the repository at this point in the history
Signed-off-by: rashidakanchwala <[email protected]>
  • Loading branch information
rashidakanchwala committed Nov 14, 2024
1 parent 10fcf20 commit 1df87fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/node-list-tree/node-list-tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ const getModularPipelineRowData = ({
focusModeIcon: focusModeIcon,
active: data.active,
selected: false,
faded: !checked,
visible: checked,
faded: disabled || !checked,
visible: !disabled && checked,
enabled: true,
disabled: disabled,
focused: focused,
Expand All @@ -88,7 +88,7 @@ const getNodeRowData = (node, disabled, hoveredNode, selected, highlight) => {
active: node.active || hoveredNode === node.id,
selected,
highlight,
faded: node.disabledNode,
faded: disabled || !checked,
visible: !disabled && checked,
checked,
disabled,
Expand Down

0 comments on commit 1df87fa

Please sign in to comment.