mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-20 14:12:06 +00:00
fix: library table sometimes crashing
This commit is contained in:
parent
64298ff10d
commit
5d433c7788
3 changed files with 4 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ui",
|
||||
"version": "6.4.20",
|
||||
"version": "6.4.21",
|
||||
"license": "BUSL-1.1",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.14.4",
|
||||
|
|
|
|||
|
|
@ -8,4 +8,6 @@
|
|||
?
|
||||
{:then query}
|
||||
{query.data?.Media?.title?.userPreferred ?? '?'}
|
||||
{:catch}
|
||||
?
|
||||
{/await}
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
accessor: 'episode',
|
||||
header: 'Episode',
|
||||
id: 'episode',
|
||||
cell: ({ value }) => value ?? '?'
|
||||
cell: ({ value }) => value?.toString() ?? '?'
|
||||
}),
|
||||
table.column({ accessor: 'files', header: 'Files', id: 'files' }),
|
||||
table.column({
|
||||
|
|
|
|||
Loading…
Reference in a new issue