Rename List view mode to Table

This commit is contained in:
Deluan
2021-05-24 12:58:15 -04:00
parent 882519738f
commit d9f268266c
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
export const ALBUM_MODE_GRID = 'ALBUM_GRID_MODE'
export const ALBUM_MODE_LIST = 'ALBUM_LIST_MODE'
export const ALBUM_MODE_TABLE = 'ALBUM_TABLE_MODE'
export const albumViewGrid = () => ({ type: ALBUM_MODE_GRID })
export const albumViewList = () => ({ type: ALBUM_MODE_LIST })
export const albumViewTable = () => ({ type: ALBUM_MODE_TABLE })