diff --git a/src/kibana/plugins/settings/sections/objects/_objects.html b/src/kibana/plugins/settings/sections/objects/_objects.html index c6f0cbfb4e9871..bce27431a4252b 100644 --- a/src/kibana/plugins/settings/sections/objects/_objects.html +++ b/src/kibana/plugins/settings/sections/objects/_objects.html @@ -2,7 +2,7 @@

Edit Saved Objects

- From here you can delete saved objects, such as saved searches. You can also edit the raw data of saved objects. Typically objects are only modified via their associated application, which is probably what you should use instead of this screen. + From here you can delete saved objects, such as saved searches. You can also edit the raw data of saved objects. Typically objects are only modified via their associated application, which is probably what you should use instead of this screen. Each tab is limited to 100 results. You can use the filter to find objects not in the default list.

@@ -10,7 +10,11 @@

Edit Saved Objects

diff --git a/src/kibana/plugins/settings/sections/objects/_objects.js b/src/kibana/plugins/settings/sections/objects/_objects.js index b0af3a08dc1c04..00e8c2c48bf788 100644 --- a/src/kibana/plugins/settings/sections/objects/_objects.js +++ b/src/kibana/plugins/settings/sections/objects/_objects.js @@ -29,7 +29,7 @@ define(function (require) { var services = registry.all().map(function (obj) { var service = $injector.get(obj.service); return service.find(filter).then(function (data) { - return { service: obj.service, title: obj.title, data: data.hits }; + return { service: obj.service, title: obj.title, data: data.hits, total: data.total }; }); }); $q.all(services).then(function (data) { diff --git a/src/kibana/plugins/settings/styles/main.less b/src/kibana/plugins/settings/styles/main.less index 655235271dc107..731248bdc549aa 100644 --- a/src/kibana/plugins/settings/styles/main.less +++ b/src/kibana/plugins/settings/styles/main.less @@ -18,7 +18,7 @@ kbn-settings-objects-view { text-transform: capitalize; } -li.kbn-settings-tab { +li.kbn-settings-tab:first-letter { text-transform: capitalize; }