From 745c0ea6a417480720dafa8aa26cd1087f69a8c0 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Fri, 19 Nov 2021 15:57:15 -0800 Subject: [PATCH] Fix empty genre/artist column --- src/components/viewtypes/ListViewTable.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/viewtypes/ListViewTable.tsx b/src/components/viewtypes/ListViewTable.tsx index 2f87c3e..f10e280 100644 --- a/src/components/viewtypes/ListViewTable.tsx +++ b/src/components/viewtypes/ListViewTable.tsx @@ -901,7 +901,7 @@ const ListViewTable = ({ > {column.dataKey.match(/artist|genre/) ? ( <> - {rowData[column.dataKey] && ( + {rowData[column.dataKey] ? ( + ) : ( + )} ) : column.dataKey === 'album' ? (