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:
pa
2025-05-16 00:40:27 +09:00
committed by GitHub
parent 2d1f39df43
commit a0cbf3807b
8 changed files with 23 additions and 23 deletions

View File

@@ -225,6 +225,14 @@
shiftHeld: {
type: Boolean,
default: false
},
gameLogIsFriend: {
type: Function,
default: () => () => false
},
gameLogIsFavorite: {
type: Function,
default: () => () => false
}
});
@@ -241,14 +249,6 @@
emit('gameLogTableLookup');
}
function gameLogIsFriend(row) {
emit('gameLogIsFriend', row);
}
function gameLogIsFavorite(row) {
emit('gameLogIsFavorite', row);
}
function lookupUser(ref) {
emit('lookupUser', ref);
}