New: Display indexer in download failed details

(cherry picked from commit a324052debf63a8db73a2f3c79201864892bb62c)
This commit is contained in:
Bogdan
2025-03-11 18:13:39 +02:00
parent 7ba8f8baee
commit cc90050c77

View File

@@ -165,7 +165,8 @@ function HistoryDetails(props) {
if (eventType === 'downloadFailed') {
const {
message
message,
indexer
} = data;
return (
@@ -177,11 +178,21 @@ function HistoryDetails(props) {
/>
{
!!message &&
indexer ?
<DescriptionListItem
title={translate('Indexer')}
data={indexer}
/> :
null
}
{
message ?
<DescriptionListItem
title={translate('Message')}
data={message}
/>
/> :
null
}
</DescriptionList>
);