mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-01 20:53:45 +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([]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user