mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-27 02:33:48 +02:00
split charts into separate routes (#1605)
This commit is contained in:
@@ -97,11 +97,13 @@ export const useAppearanceSettingsStore = defineStore(
|
||||
const isNavCollapsed = ref(true);
|
||||
const isSideBarTabShow = computed(() => {
|
||||
const currentRouteName = router.currentRoute.value?.name;
|
||||
return !(
|
||||
currentRouteName === 'friends-locations' ||
|
||||
currentRouteName === 'friend-list' ||
|
||||
currentRouteName === 'charts'
|
||||
);
|
||||
return ![
|
||||
'friends-locations',
|
||||
'friend-list',
|
||||
'charts',
|
||||
'charts-instance',
|
||||
'charts-mutual'
|
||||
].includes(currentRouteName);
|
||||
});
|
||||
|
||||
const isDataTableStriped = ref(false);
|
||||
|
||||
Reference in New Issue
Block a user