Skip to content

Commit 5c5c25d

Browse files
fix: ensure container visibility by removing hidden class
1 parent f4c2985 commit 5c5c25d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

CALEXT2_View.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,10 @@ class View {
136136
if (container.style.display === "none") {
137137
container.style.display = "flex";
138138
}
139+
if (container.classList.contains("hidden")) {
140+
container.classList.remove("hidden");
141+
}
142+
139143
this.containerDom = container;
140144
this.show();
141145
}

0 commit comments

Comments
 (0)