Skip to content

Commit 48c0c29

Browse files
authored
Codeit 3.3.0
Update filebrowser.js
2 parents 149d307 + 4c4ee19 commit 48c0c29

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

filebrowser.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1678,9 +1678,16 @@ async function renderBranchMenuHTML(renderAll) {
16781678
}
16791679

16801680
} else if (branch.classList.contains('see-more')) { // if clicked on show more button
1681-
1681+
16821682
// render branch menu
16831683
renderBranchMenuHTML(true);
1684+
1685+
// if on mobile, reposition branch menu
1686+
if (isMobile) {
1687+
1688+
moveElToEl(branchMenu, sidebarBranch, 13);
1689+
1690+
}
16841691

16851692
} else if (branch.classList.contains('new-branch')) { // if clicked on new branch button
16861693

worker/client-channel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
// update worker name when updating worker
7-
const WORKER_NAME = 'codeit-worker-v546';
7+
const WORKER_NAME = 'codeit-worker-v547';
88

99

1010
// internal paths

0 commit comments

Comments
 (0)