diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-07-15 16:51:20 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-07-15 16:51:20 +0200 |
commit | 9ee553ef23cb86b2fcdf7879149c833c81fa8fb5 (patch) | |
tree | 9a4cf72784dbfbdccea82d0781c6e0028f63bed8 /src-vue/src/plugins/store.ts | |
parent | 3ce94cde959df602fc2ed9fc42d24edf24efe7a4 (diff) | |
download | FlightCore-9ee553ef23cb86b2fcdf7879149c833c81fa8fb5.tar.gz FlightCore-9ee553ef23cb86b2fcdf7879149c833c81fa8fb5.zip |
feat: Change repair window to tab
Diffstat (limited to 'src-vue/src/plugins/store.ts')
-rw-r--r-- | src-vue/src/plugins/store.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index b61ac573..68415346 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -27,6 +27,8 @@ const persistentStore = new Store('flight-core-settings.json'); export interface FlightCoreStore { developer_mode: boolean, + repair_view_visible: boolean, + game_install: GameInstall, flightcore_version: string, @@ -64,6 +66,8 @@ export const store = createStore<FlightCoreStore>({ state(): FlightCoreStore { return { developer_mode: false, + repair_view_visible: false, + game_install: {game_path: undefined, profile: undefined, install_type: "UNKNOWN"} as unknown as GameInstall, available_profiles: [], |