diff --git a/common/css/main.css b/common/css/main.css index 2d8dbbedad9..12e35ff8136 100644 --- a/common/css/main.css +++ b/common/css/main.css @@ -13,6 +13,12 @@ text-transform:capitalize; } +.editor-title small { + opacity: 0.5; + font-size: 0.7em; + font-weight: normal; +} + .spy { position:absolute; right:0px; diff --git a/js/services.js b/js/services.js index 7cf83ccfbd4..2b9c40fd37b 100644 --- a/js/services.js +++ b/js/services.js @@ -716,8 +716,7 @@ angular.module('kibana.services', []) dashboard: angular.toJson(save) }); - request = type === 'temp' ? request.ttl(ttl) : request; - + request = type === 'temp' && ttl ? request.ttl(ttl) : request; // TOFIX: Implement error handling here return request.doIndex( diff --git a/panels/dashcontrol/editor.html b/panels/dashcontrol/editor.html index 97868ee19bf..7c87e30d1d8 100644 --- a/panels/dashcontrol/editor.html +++ b/panels/dashcontrol/editor.html @@ -2,28 +2,28 @@