UI: Fix restoring state for service names containing slashes

This commit is contained in:
Rafik Salama 2015-05-29 18:35:39 -04:00
parent 015c39baf5
commit 479bc1c2db
1 changed files with 1 additions and 1 deletions

View File

@ -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() {