From 28bec5c5a8140a80d1b50cbc5d216bb18f03bf85 Mon Sep 17 00:00:00 2001 From: Candid Dauth Date: Thu, 8 Apr 2021 18:28:40 +0200 Subject: [PATCH] Fix "Use as route destination" --- frontend/src/map/route-form/route-form-tab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/map/route-form/route-form-tab.ts b/frontend/src/map/route-form/route-form-tab.ts index 10cc9b26..52d5c990 100644 --- a/frontend/src/map/route-form/route-form-tab.ts +++ b/frontend/src/map/route-form/route-form-tab.ts @@ -52,7 +52,7 @@ export default class RouteFormTab extends Vue { } setTo(...args: any[]): void { - (this.routeForm.addVia as any)(...args); + (this.routeForm.setTo as any)(...args); } } \ No newline at end of file