diff --git a/src/app/routes/dashboard-from-es.js b/src/app/routes/dashboard-from-es.js index 2e62b3576c1..74e2ff651ed 100644 --- a/src/app/routes/dashboard-from-es.js +++ b/src/app/routes/dashboard-from-es.js @@ -1,10 +1,9 @@ define([ 'angular', 'jquery', - 'config', - 'underscore' + 'config' ], -function (angular, $, config, _) { +function (angular, $, config) { "use strict"; var module = angular.module('kibana.routes'); diff --git a/src/app/services/dashboard.js b/src/app/services/dashboard.js index d00e2961396..19ae6f2c59a 100644 --- a/src/app/services/dashboard.js +++ b/src/app/services/dashboard.js @@ -18,7 +18,7 @@ function (angular, $, kbn, _) { function DashboardModel (data) { if (!data) { data = {}; - }; + } this.title = data.title; this.tags = data.tags || [];