optimize detail columns

This commit is contained in:
jeffvli
2026-02-09 01:47:48 -08:00
parent d4c0754bd2
commit 332fc5f9f9
35 changed files with 320 additions and 106 deletions
@@ -2,6 +2,6 @@ import { ItemDetailListCellProps } from './types';
export const ComposerColumn = ({ song }: ItemDetailListCellProps) => {
const composers = song.participants?.composer;
if (!composers?.length) return '—';
if (!composers?.length) return <>&nbsp;</>;
return composers.map((a) => a.name).join(', ');
};