mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Small fixes
This commit is contained in:
@@ -7140,8 +7140,8 @@ speechSynthesis.getVoices();
|
||||
},
|
||||
layout: 'table'
|
||||
};
|
||||
$app.data.VRCPlusIconsTable = {};
|
||||
$app.data.galleryTable = {};
|
||||
$app.data.VRCPlusIconsTable = [];
|
||||
$app.data.galleryTable = [];
|
||||
$app.data.inviteMessageTable = {
|
||||
visible: false,
|
||||
data: [],
|
||||
@@ -9988,7 +9988,7 @@ speechSynthesis.getVoices();
|
||||
// App: VRCPlus Icons
|
||||
|
||||
API.$on('LOGIN', function () {
|
||||
$app.VRCPlusIconsTable = {};
|
||||
$app.VRCPlusIconsTable = [];
|
||||
});
|
||||
|
||||
$app.methods.refreshVRCPlusIconsTable = function () {
|
||||
@@ -10016,7 +10016,7 @@ speechSynthesis.getVoices();
|
||||
|
||||
API.$on('FILES:LIST', function (args) {
|
||||
if (args.params.tag === 'icon') {
|
||||
$app.VRCPlusIconsTable = args.json;
|
||||
$app.VRCPlusIconsTable = args.json.reverse();
|
||||
$app.galleryDialogIconsLoading = false;
|
||||
}
|
||||
});
|
||||
@@ -12504,7 +12504,7 @@ speechSynthesis.getVoices();
|
||||
$app.data.galleryDialogIconsLoading = false;
|
||||
|
||||
API.$on('LOGIN', function () {
|
||||
$app.galleryTable = {};
|
||||
$app.galleryTable = [];
|
||||
});
|
||||
|
||||
$app.methods.showGalleryDialog = function () {
|
||||
@@ -12524,7 +12524,7 @@ speechSynthesis.getVoices();
|
||||
|
||||
API.$on('FILES:LIST', function (args) {
|
||||
if (args.params.tag === 'gallery') {
|
||||
$app.galleryTable = args.json;
|
||||
$app.galleryTable = args.json.reverse();
|
||||
$app.galleryDialogGalleryLoading = false;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user