mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-21 21:33:30 +08:00
fix: 解决关闭菜单选项时刷新跳转到概览页的问题 (#4939)
This commit is contained in:
parent
1090df3703
commit
e799d1cc49
1 changed files with 4 additions and 5 deletions
|
@ -41,11 +41,6 @@ const { switchDark } = useTheme();
|
||||||
|
|
||||||
let timer: NodeJS.Timer | null = null;
|
let timer: NodeJS.Timer | null = null;
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
if (!tabsStore.activeTabPath) {
|
|
||||||
handleMenuClick('/');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
const classObj = computed(() => {
|
const classObj = computed(() => {
|
||||||
return {
|
return {
|
||||||
fullScreen: globalStore.isFullScreen,
|
fullScreen: globalStore.isFullScreen,
|
||||||
|
@ -163,6 +158,10 @@ onBeforeUnmount(() => {
|
||||||
timer = null;
|
timer = null;
|
||||||
});
|
});
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
if (globalStore.openMenuTabs && !tabsStore.activeTabPath) {
|
||||||
|
handleMenuClick('/');
|
||||||
|
}
|
||||||
|
|
||||||
loadStatus();
|
loadStatus();
|
||||||
initFavicon();
|
initFavicon();
|
||||||
loadDataFromDB();
|
loadDataFromDB();
|
||||||
|
|
Loading…
Reference in a new issue