mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Fix: bugs in nightly 2025-05-14T10.18-bde763d (#1232)
* fix: Sorting Arrows Revert to Default When Switching Pages (#1230) * fix: Local favorite dialog not functioning (#1231) * fix: playlist rank cannot display, gamelog icon lost
This commit is contained in:
@@ -167,16 +167,16 @@
|
||||
});
|
||||
},
|
||||
addLocalWorldFavorite(...args) {
|
||||
this.$emit('add-local-world-favorite', ...args);
|
||||
this.$emit('addLocalWorldFavorite', ...args);
|
||||
},
|
||||
removeLocalWorldFavorite(...args) {
|
||||
this.$emit('remove-local-world-favorite', ...args);
|
||||
this.$emit('removeLocalWorldFavorite', ...args);
|
||||
},
|
||||
addLocalAvatarFavorite(...args) {
|
||||
this.$emit('add-local-avatar-favorite', ...args);
|
||||
this.$emit('addLocalAvatarFavorite', ...args);
|
||||
},
|
||||
removeLocalAvatarFavorite(...args) {
|
||||
this.$emit('remove-local-avatar-favorite', ...args);
|
||||
this.$emit('removeLocalAvatarFavorite', ...args);
|
||||
},
|
||||
deleteFavoriteNoConfirm(...args) {
|
||||
this.$emit('deleteFavoriteNoConfirm', ...args);
|
||||
|
||||
Reference in New Issue
Block a user