mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Don't show null for non-cached indexer queries
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user