From b2f9c733001475faa3f9f538bb290069a50697e1 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Thu, 29 Dec 2022 18:41:35 -0800 Subject: [PATCH] Add additional song list column defaults --- src/renderer/store/song.store.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/renderer/store/song.store.ts b/src/renderer/store/song.store.ts index eb1d8abb..a789b14a 100644 --- a/src/renderer/store/song.store.ts +++ b/src/renderer/store/song.store.ts @@ -92,6 +92,14 @@ export const useSongStore = create()( column: TableColumn.YEAR, width: 100, }, + { + column: TableColumn.DATE_ADDED, + width: 100, + }, + { + column: TableColumn.PLAY_COUNT, + width: 100, + }, ], pagination: { currentPage: 1,