diff options
author | Remy Raes <raes.remy@gmail.com> | 2022-10-20 02:19:26 +0200 |
---|---|---|
committer | Remy Raes <raes.remy@gmail.com> | 2022-10-20 02:19:26 +0200 |
commit | a0cb231ddbdd7fdced9e7cda771dff7d0833c826 (patch) | |
tree | 1e8a583241d319c0f683ea84f2d7ac8abaa54e2a /src-vue/src/plugins | |
parent | a336c03cc80f2e2848de32aa8fb979abc9538993 (diff) | |
download | FlightCore-a0cb231ddbdd7fdced9e7cda771dff7d0833c826.tar.gz FlightCore-a0cb231ddbdd7fdced9e7cda771dff7d0833c826.zip |
fix: restore updateCurrentTab method with router
Diffstat (limited to 'src-vue/src/plugins')
-rw-r--r-- | src-vue/src/plugins/store.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index 647ee4e9..a977b38b 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -8,6 +8,7 @@ import { ReleaseCanal } from "../utils/ReleaseCanal"; import { ElNotification } from 'element-plus'; import { NorthstarState } from '../utils/NorthstarState'; import { Store } from 'tauri-plugin-store-api'; +import {router} from "../main"; const persistentStore = new Store('flight-core-settings.json'); @@ -65,6 +66,7 @@ export const store = createStore<FlightCoreStore>({ }, updateCurrentTab(state: any, newTab: Tabs) { state.current_tab = newTab; + router.push({path: newTab}); }, async launchGame(state: any) { // TODO update installation if release track was switched |