fix(custom): \!
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-12 01:40:25 +08:00
parent 7d379fa03c
commit 82211679f9
2 changed files with 27 additions and 22 deletions

View File

@@ -157,7 +157,7 @@ const columns = ref([
align: 'center',
slot: 'game_name',
render: (row) => {
const res = gamelist.value.find((item) => item.value === row.hall_id)
const res = gamelist.value.find((item) => item.value === Number(row.hall_id))
return h('span', null, {
default: () => res?.label || '',
})