Skip to content

Commit

Permalink
Merge pull request #1513 from bartbutenaers/ui-page-visibility-reset-fix
Browse files Browse the repository at this point in the history
Sidebar strikethrough reset fix
  • Loading branch information
joepavitt authored Dec 4, 2024
2 parents cba6e30 + 5cdc339 commit 4d17baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodes/config/ui_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@
}

function setStateClasses (item, row) {
if (!item.node.visible === 'true' || item.node.visible === false) {
if (item.node.visible === 'false' || item.node.visible === false) {
row.addClass('nrdb2-sb-item-hidden')
}
if (item.node.disabled === 'true' || item.node.disabled === true) {
Expand Down

0 comments on commit 4d17baa

Please sign in to comment.