mirror of https://github.com/status-im/consul.git
UI: Fix restoring state for service names containing slashes
This commit is contained in:
parent
26d15e6f07
commit
d3cf967977
|
@ -21,7 +21,7 @@ App.Router.map(function() {
|
|||
// Services represent a consul service
|
||||
this.resource("services", { path: "/services" }, function(){
|
||||
// Show an individual service
|
||||
this.route("show", { path: "/:name" });
|
||||
this.route("show", { path: "/*name" });
|
||||
});
|
||||
// Nodes represent a consul node
|
||||
this.resource("nodes", { path: "/nodes" }, function() {
|
||||
|
|
Loading…
Reference in New Issue