mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 16:53:50 +02:00
previousInstancesInfoDialog cleanup
This commit is contained in:
@@ -43,8 +43,7 @@
|
||||
import { useVrcxVueTable } from '../../../lib/table/useVrcxVueTable';
|
||||
|
||||
const { lookupUser } = useUserStore();
|
||||
const { previousInstancesInfoDialogVisible, previousInstancesInfoDialogInstanceId } =
|
||||
storeToRefs(useInstanceStore());
|
||||
const { previousInstancesInfoDialog } = storeToRefs(useInstanceStore());
|
||||
const { gameLogIsFriend, gameLogIsFavorite } = useGameLogStore();
|
||||
const { t } = useI18n();
|
||||
|
||||
@@ -134,7 +133,7 @@
|
||||
};
|
||||
|
||||
watch(
|
||||
() => previousInstancesInfoDialogVisible.value,
|
||||
() => previousInstancesInfoDialog.value.visible,
|
||||
(value) => {
|
||||
if (value) {
|
||||
nextTick(() => {
|
||||
@@ -148,7 +147,7 @@
|
||||
|
||||
function init() {
|
||||
loading.value = true;
|
||||
location.value = parseLocation(previousInstancesInfoDialogInstanceId.value);
|
||||
location.value = parseLocation(previousInstancesInfoDialog.value.instanceId);
|
||||
}
|
||||
|
||||
function refreshPreviousInstancesInfoTable() {
|
||||
|
||||
Reference in New Issue
Block a user