mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +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 ?
|
||||
<DescriptionListItem
|
||||
title={translate('ElapsedTime')}
|
||||
data={`${elapsedTime}ms${cached === '1' ? ' (cached)' : null}`}
|
||||
data={`${elapsedTime}ms${cached === '1' ? ' (cached)' : ''}`}
|
||||
/> :
|
||||
null
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue