Fix context menu icon color on Light theme

This commit is contained in:
Deluan
2020-05-01 12:08:32 -04:00
parent 6d20ca27f6
commit bf8f9d2be8
2 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -95,7 +95,9 @@ const LoadedAlbumGrid = ({ ids, data, basePath, width }) => {
</ArtistLinkField>
</div>
}
actionIcon={<AlbumContextMenu record={data[id]} />}
actionIcon={
<AlbumContextMenu record={data[id]} color={'white'} />
}
/>
</GridListTile>
))}