Merge pull request #988 from rafikk/master

UI: Fix restoring state for service names containing slashes
This commit is contained in:
Ryan Uber 2015-06-02 15:06:39 -07:00
commit ee74f38f3b
1 changed files with 1 additions and 1 deletions

View File

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