From 3d35595397b9206bfa275e687bfda4b87e01781c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 23 Jan 2014 13:22:35 +0100 Subject: [PATCH] Fixed fullscreen not increasing graph height as before --- src/app/panels/graphite/module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/panels/graphite/module.js b/src/app/panels/graphite/module.js index 50effeeba9a..b29a22838af 100644 --- a/src/app/panels/graphite/module.js +++ b/src/app/panels/graphite/module.js @@ -532,7 +532,7 @@ function (angular, app, $, _, kbn, moment, timeSeries) { } try { - elem.css({ height:scope.panel.height || scope.row.height }); + elem.css({ height: scope.height || scope.panel.height || scope.row.height }); } catch(e) { return; } _.each(data, function(series) {