New: Include Series Match Type in grab event details
This commit is contained in:
parent
5d976ac657
commit
78dc2a7e13
|
@ -24,6 +24,7 @@ function HistoryDetails(props) {
|
||||||
indexer,
|
indexer,
|
||||||
releaseGroup,
|
releaseGroup,
|
||||||
preferredWordScore,
|
preferredWordScore,
|
||||||
|
seriesMatchType,
|
||||||
nzbInfoUrl,
|
nzbInfoUrl,
|
||||||
downloadClient,
|
downloadClient,
|
||||||
downloadClientName,
|
downloadClientName,
|
||||||
|
@ -72,6 +73,16 @@ function HistoryDetails(props) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
seriesMatchType ?
|
||||||
|
<DescriptionListItem
|
||||||
|
descriptionClassName={styles.description}
|
||||||
|
title="Series Match Type"
|
||||||
|
data={seriesMatchType}
|
||||||
|
/> :
|
||||||
|
null
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
nzbInfoUrl ?
|
nzbInfoUrl ?
|
||||||
<span>
|
<span>
|
||||||
|
|
Loading…
Reference in New Issue