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 @@