Web: Client: fix closing dropdown after click on input

(bug 60655 does not appear)
This commit is contained in:
Aleksandr Lushkin 2023-09-22 13:44:02 +02:00
parent 179441e4cd
commit f5e0260558

View File

@ -218,7 +218,7 @@ const InviteInput = ({
};
const closeInviteInputPanel = (e) => {
// if (e?.target.tagName.toUpperCase() == "INPUT") return;
if (e?.target.tagName.toUpperCase() === "INPUT") return;
setSearchPanelVisible(false);
};