Skip to content

Commit

Permalink
fix hidden pv toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
rerpha committed Nov 27, 2024
1 parent e71d75d commit 2bbbc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Block.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Block({
string | number | undefined
>();
const [showAdvanced, setShowAdvanced] = useState(false);
if (!pv.visible && !showHiddenBlocks && !instName) {
if (!pv.visible && !showHiddenBlocks) {
return null;
}
if (pv.value != currentValue) {
Expand Down

0 comments on commit 2bbbc0f

Please sign in to comment.