text tweaks

This commit is contained in:
austinried
2021-08-23 10:56:44 +09:00
parent dd97cd4391
commit 5879694c8c
6 changed files with 14 additions and 14 deletions

View File

@@ -45,15 +45,15 @@ const AlbumListRenderItem: React.FC<{
}> = ({ item }) => <AlbumItem album={item.album} size={item.size} height={item.height} />
const filterOptions: OptionData[] = [
{ text: 'By name', value: 'alphabeticalByName' },
{ text: 'By artist', value: 'alphabeticalByArtist' },
{ text: 'By Name', value: 'alphabeticalByName' },
{ text: 'By Artist', value: 'alphabeticalByArtist' },
{ text: 'Newest', value: 'newest' },
{ text: 'Frequent', value: 'frequent' },
{ text: 'Recent', value: 'recent' },
{ text: 'Starred', value: 'starred' },
{ text: 'Random', value: 'random' },
// { text: 'By year...', value: 'byYear' },
// { text: 'By genre...', value: 'byGenre' },
// { text: 'By Year...', value: 'byYear' },
// { text: 'By Genre...', value: 'byGenre' },
]
const AlbumsList = () => {