fix: simplify play count accessor, remove right-align to debug rendering

This commit is contained in:
2026-03-22 10:52:58 -04:00
parent c5b293d410
commit c7bf5271e6
@@ -189,10 +189,8 @@ export const COLUMN_DEFS: Record<string, ColumnDef> = {
playCount: {
id: 'playCount',
label: 'Play Count',
accessor: (t) =>
String(t.PlayCount ?? 0),
accessor: (t) => t.PlayCount > 0 ? `${t.PlayCount}` : '0',
defaultWidth: '80px',
align: 'right',
comparator: (a, b) =>
compareNum(a.PlayCount, b.PlayCount),
},