Skip to content

Commit 5e7cd3b

Browse files
committed
Fix container options still shown if "Enable support for containers tabs" is unchecked.
1 parent cba2857 commit 5e7cd3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ui/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ document.querySelector("#version").textContent = _("Version",
227227
document.querySelector("#containers-opt").style.display = supported ? "": "none";
228228
document.querySelector("#opt-containers").disabled = !supported;
229229
document.querySelector("#opt-containers").checked = contextStore.enabled;
230-
document.querySelector("#container-options").style.display = supported ? "" : "none";
230+
document.querySelector("#container-options").style.display = contextStore.enabled ? "" : "none";
231231
}
232232
updateContainersEnabled();
233233

0 commit comments

Comments
 (0)