Skip to content

Commit

Permalink
fix(projects): fix cached tabs locale
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed Nov 11, 2023
1 parent 6329c5d commit 0973b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/tab/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const useTabStore = defineStore(SetupStoreId.Tab, () => {
const storageTabs = localStg.get('globalTabs');

if (storageTabs) {
tabs.value = storageTabs;
tabs.value = updateTabsByI18nKey(storageTabs);
}

addTab(currentRoute);
Expand Down

0 comments on commit 0973b08

Please sign in to comment.