fix typing errors
Signed-off-by: garionion <github@entr0py.de>
This commit is contained in:
parent
736edcd8a6
commit
f0d147ab27
14 changed files with 74 additions and 122 deletions
|
@ -55,7 +55,10 @@ const routes: RouteRecordRaw[] = [
|
|||
path: "/registerAccessPoint",
|
||||
name: "RegisterAccessPoint",
|
||||
component: RegisterAccessPoint,
|
||||
props: (route) => ({ apID: Number(route.query["ap-id"]).valueOf() }),
|
||||
props: (route) =>
|
||||
route.query["ap-id"]
|
||||
? { apID: Number(route.query["ap-id"]).valueOf() }
|
||||
: {},
|
||||
},
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue