Skip to content

Commit

Permalink
fix(nfts): search, hide value
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed May 7, 2022
1 parent a3c52cb commit d0e88ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ const SelectInput = (props) => {
height = '48px',
hideFocusedControl,
hideIndicator,
hideValue,
isLoading,
items,
menuIsOpen,
Expand Down Expand Up @@ -249,7 +250,7 @@ const SelectInput = (props) => {
ref={getRef}
templateDisplay={templateDisplay}
templateItem={templateItem}
value={defaultValue}
value={hideValue ? null : defaultValue}
/>
</NonceProvider>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ const NftsSearch: React.FC<Props> = ({ nftActions, nftSearch, routerActions }) =
elements={elements}
grouped
hideIndicator
hideValue
name='search'
label='Collections or items'
cursor='initial'
Expand Down

0 comments on commit d0e88ce

Please sign in to comment.