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