Skip to content

Commit 2bbbc0f

Browse files
committed
fix hidden pv toggle
1 parent e71d75d commit 2bbbc0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/Block.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function Block({
1818
string | number | undefined
1919
>();
2020
const [showAdvanced, setShowAdvanced] = useState(false);
21-
if (!pv.visible && !showHiddenBlocks && !instName) {
21+
if (!pv.visible && !showHiddenBlocks) {
2222
return null;
2323
}
2424
if (pv.value != currentValue) {

0 commit comments

Comments
 (0)