From 949acfbb82bba94f26143cf40621279571351561 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Mon, 10 Jul 2017 09:40:00 -0700 Subject: [PATCH] UI cleanup follow up from #3245. (#3251) * Removes unnecessary set for model component which will be null. * Returns a 404 for a missing node, not a 200 with an empty response. * Updates built-in web assets. --- javascripts/app/routes.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/javascripts/app/routes.js b/javascripts/app/routes.js index f3c18b3faa56..a0828949700d 100644 --- a/javascripts/app/routes.js +++ b/javascripts/app/routes.js @@ -356,12 +356,6 @@ App.NodesShowRoute = App.BaseRoute.extend({ controller.set('content', models.node); controller.set('sessions', models.sessions); controller.set('tomography', models.tomography); - // - // Since we have 2 column layout, we need to also display the - // list of nodes on the left. Hence setting the attribute - // {{nodes}} on the controller. - // - controller.set('nodes', models.nodes); } });