Don't show null for non-cached indexer queries

This commit is contained in:
Bogdan
2024-07-20 20:36:01 +03:00
parent 96f49da79e
commit 5f3a329ef2

View File

@@ -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
}