fix(front): fix selecting addresses in autocomplete
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
14d93120b5
commit
e0488dd87f
|
@ -279,6 +279,7 @@ const setSelected = (newValue: IAddress | null) => {
|
||||||
if (!newValue) return;
|
if (!newValue) return;
|
||||||
console.debug("setting selected to model value");
|
console.debug("setting selected to model value");
|
||||||
Object.assign(selected, newValue);
|
Object.assign(selected, newValue);
|
||||||
|
emit("update:modelValue", selected);
|
||||||
};
|
};
|
||||||
|
|
||||||
const saveManualAddress = (): void => {
|
const saveManualAddress = (): void => {
|
||||||
|
|
Loading…
Reference in a new issue