mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 10:53:33 +00:00
Add stricter loading check for cells
This commit is contained in:
parent
ed12d59564
commit
d011c29ce8
4 changed files with 4 additions and 4 deletions
|
|
@ -48,7 +48,7 @@ export const CombinedTitleCell = ({ value, rowIndex, node }: ICellRendererParams
|
|||
return value?.type === ServerType.JELLYFIN ? value.artists : value.albumArtists;
|
||||
}, [value]);
|
||||
|
||||
if (!value) {
|
||||
if (value === undefined) {
|
||||
return (
|
||||
<CellContainer height={node.rowHeight || 40}>
|
||||
<Skeleton>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue