fix: Filtering on selection toolbar

This commit is contained in:
Tom Moor
2023-11-17 13:24:39 -05:00
parent 50ae815389
commit 5c03908529

View File

@@ -245,7 +245,7 @@ export default function SelectionToolbar(props: Props) {
if (item.name && !commands[item.name]) {
return false;
}
if (!item.visible) {
if (item.visible === false) {
return false;
}
return true;