We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 149d307 + 4c4ee19 commit 48c0c29Copy full SHA for 48c0c29
2 files changed
filebrowser.js
@@ -1678,9 +1678,16 @@ async function renderBranchMenuHTML(renderAll) {
1678
}
1679
1680
} else if (branch.classList.contains('see-more')) { // if clicked on show more button
1681
-
+
1682
// render branch menu
1683
renderBranchMenuHTML(true);
1684
1685
+ // if on mobile, reposition branch menu
1686
+ if (isMobile) {
1687
1688
+ moveElToEl(branchMenu, sidebarBranch, 13);
1689
1690
+ }
1691
1692
} else if (branch.classList.contains('new-branch')) { // if clicked on new branch button
1693
worker/client-channel.js
@@ -4,7 +4,7 @@
4
5
6
// update worker name when updating worker
7
-const WORKER_NAME = 'codeit-worker-v546';
+const WORKER_NAME = 'codeit-worker-v547';
8
9
10
// internal paths
0 commit comments