Close list dropdown when clicking outside of it
Some checks failed
CI / Lint (pull_request) Failing after 25s
CI / Test (pull_request) Successful in 34s

This commit is contained in:
2026-03-13 13:40:28 +04:00
parent a8613ab81a
commit b2220b8310
3 changed files with 32 additions and 2 deletions

View File

@@ -49,7 +49,12 @@ export default class PlaceDetails extends Component {
}
@action
toggleLists() {
toggleLists(event) {
// Prevent this click from propagating to the document listener
// which handles the "click outside" logic.
if (event) {
event.stopPropagation();
}
this.showLists = !this.showLists;
}