Skip to content

Commit

Permalink
🐛 fix #7375 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Feb 17, 2023
1 parent 9e94819 commit 81f2cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/layout/status.ts
Expand Up @@ -47,7 +47,7 @@ export const initStatus = (isWindow = false) => {
document.querySelectorAll(".dock").forEach(item => {
if (dockIsShow) {
item.classList.add("fn__none");
} else if (item.querySelectorAll(".dock__item").length > 1) {
} else if (item.querySelectorAll(".dock__item").length > 0) {
item.classList.remove("fn__none");
}
});
Expand Down

0 comments on commit 81f2cc2

Please sign in to comment.