We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38fbf34 commit 507e41fCopy full SHA for 507e41f
src/sidebarApps/files/index.js
@@ -104,7 +104,11 @@ export function fixHeight(target) {
104
if (list === activeFileList) return;
105
106
if (target === activeFileList) {
107
- if (list.collapsed) return;
+ if (list.collapsed) {
108
+ list.style.removeProperty("max-height");
109
+ list.style.removeProperty("height");
110
+ return;
111
+ };
112
target = list;
113
}
114
@@ -114,7 +118,11 @@ export function fixHeight(target) {
118
return;
115
119
116
120
117
121
122
123
124
125
126
127
list.collapse();
128
list.style.removeProperty("max-height");
0 commit comments