mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 05:44:50 +00:00
New: Include Movie Match Type in grab event details
This commit is contained in:
parent
875bf0c59e
commit
5d061a8729
2 changed files with 12 additions and 0 deletions
|
@ -27,6 +27,7 @@ function HistoryDetails(props) {
|
|||
downloadClient,
|
||||
downloadClientName,
|
||||
downloadId,
|
||||
movieMatchType,
|
||||
age,
|
||||
ageHours,
|
||||
ageMinutes,
|
||||
|
@ -73,6 +74,16 @@ function HistoryDetails(props) {
|
|||
</span>
|
||||
}
|
||||
|
||||
{
|
||||
movieMatchType ?
|
||||
<DescriptionListItem
|
||||
descriptionClassName={styles.description}
|
||||
title={translate('MovieMatchType')}
|
||||
data={movieMatchType}
|
||||
/> :
|
||||
null
|
||||
}
|
||||
|
||||
{
|
||||
downloadClientNameInfo ?
|
||||
<DescriptionListItem
|
||||
|
|
|
@ -597,6 +597,7 @@
|
|||
"MovieIsOnImportExclusionList": "Movie is on Import Exclusion List",
|
||||
"MovieIsRecommend": "Movie is recommended based on recent addition",
|
||||
"MovieIsUnmonitored": "Movie is unmonitored",
|
||||
"MovieMatchType": "Movie Match Type",
|
||||
"MovieNaming": "Movie Naming",
|
||||
"MovieOnly": "Movie Only",
|
||||
"Movies": "Movies",
|
||||
|
|
Loading…
Reference in a new issue