|
|
|
@ -174,7 +174,7 @@ function HistoryDetails(props: HistoryDetailsProps) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (eventType === 'downloadFailed') {
|
|
|
|
|
const { message } = data as DownloadFailedHistory;
|
|
|
|
|
const { message, indexer } = data as DownloadFailedHistory;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<DescriptionList>
|
|
|
|
@ -188,6 +188,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}
|
|
|
|
|