diff --git a/src/kibana/plugins/settings/sections/indices/_indexed_fields.js b/src/kibana/plugins/settings/sections/indices/_indexed_fields.js index 2200e1b13801a..b1077f866edfd 100644 --- a/src/kibana/plugins/settings/sections/indices/_indexed_fields.js +++ b/src/kibana/plugins/settings/sections/indices/_indexed_fields.js @@ -16,20 +16,13 @@ define(function (require) { var rowScopes = []; // track row scopes, so they can be destroyed as needed $scope.perPage = 25; - $scope.columns = [{ - title: 'name' - }, { - title: 'type' - }, { - title: 'analyzed', - info: 'Analyzed fields may require extra memory to visualize' - }, { - title: 'indexed', - info: 'Fields that are not indexed are unavailable for search' - }, { - title: 'popularity', - info: 'A gauge of how often this field is used', - }]; + $scope.columns = [ + { title: 'name' }, + { title: 'type' }, + { title: 'analyzed', info: 'Analyzed fields may require extra memory to visualize' }, + { title: 'indexed', info: 'Fields that are not indexed are unavailable for search' }, + { title: 'popularity', info: 'A gauge of how often this field is used' } + ]; $scope.$watchCollection('indexPattern.fields', function () { _.invoke(rowScopes, '$destroy'); diff --git a/src/kibana/plugins/settings/sections/indices/_scripted_fields.js b/src/kibana/plugins/settings/sections/indices/_scripted_fields.js index 659c75413f7ee..d669736dafe46 100644 --- a/src/kibana/plugins/settings/sections/indices/_scripted_fields.js +++ b/src/kibana/plugins/settings/sections/indices/_scripted_fields.js @@ -22,18 +22,13 @@ define(function (require) { $scope.perPage = 25; - $scope.columns = [{ - title: 'name' - }, { - title: 'script' - }, { - title: 'type' - }, { - title: 'popularity' - }, { - title: 'controls', - sortable: false - }]; + $scope.columns = [ + { title: 'name' }, + { title: 'script' }, + { title: 'type' }, + { title: 'popularity', info: 'A gauge of how often this field is used' }, + { title: 'controls', sortable: false } + ]; $scope.$watch('indexPattern.fields', function () { _.invoke(rowScopes, '$destroy');