mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Fix display 0 value as description (#861)
* fixed return 0 value * lint error fix
This commit is contained in:
parent
56993904cf
commit
8cca002279
@ -42,8 +42,9 @@ export default function PageGatsbySearch(props: PageProps): ReactElement {
|
|||||||
}
|
}
|
||||||
description={
|
description={
|
||||||
totalPagesNumber &&
|
totalPagesNumber &&
|
||||||
totalPagesNumber > MAXIMUM_NUMBER_OF_PAGES_WITH_RESULTS &&
|
totalPagesNumber > MAXIMUM_NUMBER_OF_PAGES_WITH_RESULTS
|
||||||
'**Results displayed are limited to the first 10k, please refine your search.**'
|
? '**Results displayed are limited to the first 10k, please refine your search.**'
|
||||||
|
: undefined
|
||||||
}
|
}
|
||||||
uri={props.uri}
|
uri={props.uri}
|
||||||
>
|
>
|
||||||
|
Loading…
Reference in New Issue
Block a user