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

@@ -1,5 +1,5 @@
<template>
<div v-if="menuActiveIndex === 'playerList'" class="x-container" style="padding-top: 5px">
<div v-show="menuActiveIndex === 'playerList'" class="x-container" style="padding-top: 5px">
<div style="display: flex; flex-direction: column; height: 100%">
<div v-if="currentInstanceWorld.ref.id" style="display: flex">
<el-popover placement="right" width="500px" trigger="click" style="height: 120px">
@@ -776,8 +776,8 @@
<template #default="scope">
<span
class="name"
:class="scope.row.ref.trustClass"
v-text="scope.row.ref.trustLevel"></span>
:class="scope.row.ref.$trustClass"
v-text="scope.row.ref.$trustLevel"></span>
</template>
</el-table-column>
<el-table-column :label="t('table.playerList.language')" width="100" prop="ref.$languages">
@@ -875,7 +875,7 @@
},
photonEventTableTypeFilter: {
type: Array,
default: []
default: () => []
},
photonEventTableTypeFilterList: {
type: Array,