mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
fix(web): prevent change-location suggestion race-condition (#11523)
When debouncer activated on deletion, the handleSearchPlaces() function would fire a request with empty query. UI would then show Immich API error.
This commit is contained in:
parent
899b8a0ce7
commit
37cc6fbf27
@ -69,15 +69,18 @@
|
||||
};
|
||||
|
||||
const handleSearchPlaces = () => {
|
||||
if (searchWord === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (latestSearchTimeout) {
|
||||
clearTimeout(latestSearchTimeout);
|
||||
}
|
||||
showLoadingSpinner = true;
|
||||
|
||||
const searchTimeout = window.setTimeout(() => {
|
||||
if (searchWord === '') {
|
||||
places = [];
|
||||
showLoadingSpinner = false;
|
||||
return;
|
||||
}
|
||||
|
||||
searchPlaces({ name: searchWord })
|
||||
.then((searchResult) => {
|
||||
// skip result when a newer search is happening
|
||||
|
Loading…
Reference in New Issue
Block a user