Skip to content

Commit

Permalink
UI: Fix restoring state for service names containing slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
rafikk committed May 29, 2015
1 parent 26d15e6 commit d3cf967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/javascripts/app/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit d3cf967

Please sign in to comment.