mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Fix for History Not Showing
This commit is contained in:
@@ -38,9 +38,9 @@ function getTooltip(eventType, data) {
|
||||
case 'grabbed':
|
||||
return `Album grabbed from ${data.indexer} and sent to ${data.downloadClient}`;
|
||||
case 'seriesFolderImported':
|
||||
return 'Album imported from artist folder';
|
||||
return 'Track imported from artist folder';
|
||||
case 'downloadFolderImported':
|
||||
return 'Album downloaded successfully and picked up from download client';
|
||||
return 'Track downloaded successfully and picked up from download client';
|
||||
case 'downloadFailed':
|
||||
return 'Album download failed';
|
||||
case 'trackFileDeleted':
|
||||
|
||||
@@ -13,10 +13,10 @@ function createMapStateToProps() {
|
||||
createArtistSelector(),
|
||||
createEpisodeSelector(),
|
||||
createUISettingsSelector(),
|
||||
(artist, episode, uiSettings) => {
|
||||
(artist, album, uiSettings) => {
|
||||
return {
|
||||
artist,
|
||||
episode,
|
||||
album,
|
||||
shortDateFormat: uiSettings.shortDateFormat,
|
||||
timeFormat: uiSettings.timeFormat
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user