1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Clean up events

This commit is contained in:
David Walsh 2020-10-23 14:29:16 -05:00
parent cdda54155e
commit 15aba70e74
2 changed files with 4 additions and 4 deletions

View File

@ -26,8 +26,7 @@ export default function DropdownSearchList ({
hideItemIf,
listContainerClassName,
}) {
function close() {
const close = () => {
setIsOpen(false)
onClose && onClose()
}

View File

@ -34,6 +34,7 @@ export default function ItemList ({
return null
}
const onClick = () => onClickItem && onClickItem(result)
const {
iconUrl,
identiconAddress,
@ -52,8 +53,8 @@ export default function ItemList ({
'searchable-item-list__item--selected': selected,
'searchable-item-list__item--disabled': disabled,
})}
onClick={() => onClickItem && onClickItem(result)}
onKeyUp={e => e.key === "Enter" && onClickItem && onClickItem(result)}
onClick={onClick}
onKeyUp={e => e.key === "Enter" && onClick()}
key={`searchable-item-list-item-${i}`}
>
{(iconUrl || primaryLabel) && (<UrlIcon url={iconUrl} name={primaryLabel} />)}