Skip to content

Commit 61b200a

Browse files
committed
Fix pads visibility checkbox init state
1 parent 0423adf commit 61b200a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InteractiveHtmlBom/web/ibom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ function initDefaults() {
745745
document.getElementById("bomCheckboxes").value = bomCheckboxes;
746746

747747
var b = getStorageBooleanOrDefault("padsVisible", config.show_pads);
748-
document.getElementById("fabricationCheckbox").checked = b;
748+
document.getElementById("padsCheckbox").checked = b;
749749
padsVisible(b);
750750

751751
b = getStorageBooleanOrDefault("fabricationVisible", config.show_fabrication);

0 commit comments

Comments
 (0)