|
|
|
@ -165,7 +165,7 @@ function HistoryDetails(props: HistoryDetailsProps) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (eventType === 'downloadFailed') {
|
|
|
|
|
const { message } = data as DownloadFailedHistory;
|
|
|
|
|
const { message, indexer } = data as DownloadFailedHistory;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<DescriptionList>
|
|
|
|
@ -179,6 +179,10 @@ function HistoryDetails(props: HistoryDetailsProps) {
|
|
|
|
|
<DescriptionListItem title={translate('GrabId')} data={downloadId} />
|
|
|
|
|
) : null}
|
|
|
|
|
|
|
|
|
|
{indexer ? (
|
|
|
|
|
<DescriptionListItem title={translate('Indexer')} data={indexer} />
|
|
|
|
|
) : null}
|
|
|
|
|
|
|
|
|
|
{message ? (
|
|
|
|
|
<DescriptionListItem title={translate('Message')} data={message} />
|
|
|
|
|
) : null}
|
|
|
|
|