mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Small changes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { reactive, ref, watch } from 'vue';
|
||||
import { reactive, ref, shallowReactive, watch } from 'vue';
|
||||
import { defineStore } from 'pinia';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
@@ -37,7 +37,7 @@ export const useGalleryStore = defineStore('Gallery', () => {
|
||||
instanceInventoryQueueWorker: null
|
||||
});
|
||||
|
||||
const cachedEmoji = new Map();
|
||||
const cachedEmoji = shallowReactive(new Map());
|
||||
|
||||
const galleryTable = ref([]);
|
||||
|
||||
|
||||
@@ -1436,7 +1436,7 @@
|
||||
const vrState = reactive({
|
||||
appType: new URLSearchParams(window.location.search).has('wrist') ? 'wrist' : 'hmd',
|
||||
appLanguage: 'en',
|
||||
currentCulture: 'en-nz',
|
||||
currentCulture: 'en-gb',
|
||||
currentTime: new Date().toJSON(),
|
||||
cpuUsageEnabled: false,
|
||||
cpuUsage: '0',
|
||||
|
||||
Reference in New Issue
Block a user