From 70dc4d86dc767abbe2204e209e618d900dd9fb83 Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 4 Sep 2018 22:36:51 -0400 Subject: [PATCH] Fixed: Reorg default properties in ArtistIndexRow --- frontend/src/Artist/Index/Table/ArtistIndexRow.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/Artist/Index/Table/ArtistIndexRow.js b/frontend/src/Artist/Index/Table/ArtistIndexRow.js index bf42a635f..d5b554459 100644 --- a/frontend/src/Artist/Index/Table/ArtistIndexRow.js +++ b/frontend/src/Artist/Index/Table/ArtistIndexRow.js @@ -416,14 +416,14 @@ ArtistIndexRow.propTypes = { }; ArtistIndexRow.defaultProps = { - genres: [], - tags: [], statistics: { albumCount: 0, trackCount: 0, trackFileCount: 0, totalTrackCount: 0 - } + }, + genres: [], + tags: [] }; export default ArtistIndexRow;