Skip to content

Commit

Permalink
Merge pull request #988 from rafikk/master
Browse files Browse the repository at this point in the history
UI: Fix restoring state for service names containing slashes
  • Loading branch information
ryanuber committed Jun 2, 2015
2 parents 0ed0883 + d3cf967 commit ee74f38
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
@@ -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() {

0 comments on commit ee74f38

Please sign in to comment.