mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-15 04:55:26 +01:00
Don't show null for non-cached indexer queries
This commit is contained in:
parent
96f49da79e
commit
5f3a329ef2
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ function HistoryDetails(props) {
|
||||||
elapsedTime ?
|
elapsedTime ?
|
||||||
<DescriptionListItem
|
<DescriptionListItem
|
||||||
title={translate('ElapsedTime')}
|
title={translate('ElapsedTime')}
|
||||||
data={`${elapsedTime}ms${cached === '1' ? ' (cached)' : null}`}
|
data={`${elapsedTime}ms${cached === '1' ? ' (cached)' : ''}`}
|
||||||
/> :
|
/> :
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue