implement review comments
This commit is contained in:
parent
8ec5e7f8ce
commit
fe3b81e72d
|
@ -84,7 +84,7 @@
|
|||
if (!event.detail.startsWith("/")) {
|
||||
route = "/" + event.detail
|
||||
}
|
||||
route = route.replaceAll(" ", "_")
|
||||
route = route.replaceAll(" ", "-")
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
key: "routing.route",
|
||||
label: "Route",
|
||||
control: Input,
|
||||
parser: val => val.replaceAll(" ", "_"),
|
||||
parser: val => val.replaceAll(" ", "-"),
|
||||
},
|
||||
{ key: "routing.roleId", label: "Access", control: RoleSelect },
|
||||
{ key: "layoutId", label: "Layout", control: LayoutSelect },
|
||||
|
|
Loading…
Reference in New Issue