diff --git a/ui/index.html b/ui/index.html index dce0041d15..96a115c544 100644 --- a/ui/index.html +++ b/ui/index.html @@ -37,7 +37,7 @@
- Key/Value + {{#link-to 'kv' class='btn btn-default'}}Key/Value{{/link-to}}
diff --git a/ui/javascripts/app.js b/ui/javascripts/app.js index 21f944e1fc..27404a8628 100755 --- a/ui/javascripts/app.js +++ b/ui/javascripts/app.js @@ -13,10 +13,10 @@ App.Router.map(function() { this.resource("nodes", { path: "/nodes" }, function() { this.route("show", { path: "/:name" }); }); + this.resource("kv", { path: "/kv" }); }); this.route("index", { path: "/" }); - this.route("kv", { path: "/:dc/kv" }); });