correction about issue #1556 : Fix location on homepage and location clearing

This commit is contained in:
Laurent GAY
2024-10-23 16:13:17 +02:00
parent 3ed4105879
commit 9403a9d60a
3 changed files with 20 additions and 2 deletions

View File

@@ -374,7 +374,7 @@ const asyncData = async (query: string): Promise<void> => {
};
const selectedAddressText = computed(() => {
if (!selected) return undefined;
if (!selected || !selected.id) return undefined;
return addressFullName(selected);
});