mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-15 04:01:57 +01:00
Show Categories and Source for History Details
This commit is contained in:
parent
a041fc0d4b
commit
a3bf86935d
1 changed files with 19 additions and 1 deletions
|
|
@ -15,7 +15,9 @@ function HistoryDetails(props) {
|
|||
if (eventType === 'indexerQuery') {
|
||||
const {
|
||||
query,
|
||||
queryResults
|
||||
queryResults,
|
||||
categories,
|
||||
source
|
||||
} = data;
|
||||
|
||||
return (
|
||||
|
|
@ -41,6 +43,22 @@ function HistoryDetails(props) {
|
|||
data={queryResults}
|
||||
/>
|
||||
}
|
||||
|
||||
{
|
||||
!!data &&
|
||||
<DescriptionListItem
|
||||
title={'Categories'}
|
||||
data={categories}
|
||||
/>
|
||||
}
|
||||
|
||||
{
|
||||
!!data &&
|
||||
<DescriptionListItem
|
||||
title={'Source'}
|
||||
data={source}
|
||||
/>
|
||||
}
|
||||
</DescriptionList>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue