mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-23 04:18:00 +02:00
optimize detail columns
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { ItemDetailListCellProps } from './types';
|
||||
|
||||
export const YearColumn = ({ song }: ItemDetailListCellProps) =>
|
||||
song.releaseYear != null ? String(song.releaseYear) : '—';
|
||||
song.releaseYear ? String(song.releaseYear) : <> </>;
|
||||
|
||||
Reference in New Issue
Block a user