From a0cbf3807bfc76020f433b57ca6a8bdc2052fe44 Mon Sep 17 00:00:00 2001 From: pa Date: Fri, 16 May 2025 00:40:27 +0900 Subject: [PATCH] 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 --- src/app.js | 6 +++--- .../dialogs/ChooseFavoriteGroupDialog.vue | 8 ++++---- src/views/FriendLog/FriendLog.vue | 2 +- src/views/GameLog/GameLog.vue | 16 ++++++++-------- src/views/Moderation/Moderation.vue | 2 +- src/views/Notifications/Notification.vue | 2 +- src/views/PlayerList/PlayerList.vue | 8 ++++---- src/views/Search/Search.vue | 2 +- 8 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/app.js b/src/app.js index 1ed42975..a4cccf13 100644 --- a/src/app.js +++ b/src/app.js @@ -13664,15 +13664,15 @@ console.log(`isLinux: ${LINUX}`); menuActiveIndex: this.menuActiveIndex, gameLogTable: this.gameLogTable, shiftHeld: this.shiftHeld, - hideTooltips: this.hideTooltips + hideTooltips: this.hideTooltips, + gameLogIsFriend: this.gameLogIsFriend, + gameLogIsFavorite: this.gameLogIsFavorite }; }; $app.computed.gameLogTabEvent = function () { return { gameLogTableLookup: this.gameLogTableLookup, - gameLogIsFriend: this.gameLogIsFriend, - gameLogIsFavorite: this.gameLogIsFavorite, lookupUser: this.lookupUser, updateGameLogSessionTable: (val) => (this.gameLogSessionTable = val), diff --git a/src/components/dialogs/ChooseFavoriteGroupDialog.vue b/src/components/dialogs/ChooseFavoriteGroupDialog.vue index 8fe55715..dd15fdec 100644 --- a/src/components/dialogs/ChooseFavoriteGroupDialog.vue +++ b/src/components/dialogs/ChooseFavoriteGroupDialog.vue @@ -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); diff --git a/src/views/FriendLog/FriendLog.vue b/src/views/FriendLog/FriendLog.vue index 7110e08b..516e7abf 100644 --- a/src/views/FriendLog/FriendLog.vue +++ b/src/views/FriendLog/FriendLog.vue @@ -1,5 +1,5 @@