diff --git a/src/app/features/panel/panelDirective.js b/src/app/features/panel/panelDirective.js
index f8048d53637..7330bb627de 100644
--- a/src/app/features/panel/panelDirective.js
+++ b/src/app/features/panel/panelDirective.js
@@ -30,8 +30,8 @@ function (angular, $, config) {
link: function(scope, elem) {
var panelContainer = elem.find('.panel-container');
- scope.$watchGroup(['fullscreen', 'panel.height', 'row.height'], function() {
- panelContainer.css({ minHeight: scope.panel.height || scope.row.height, display: 'block' });
+ scope.$watchGroup(['fullscreen', 'height', 'panel.height', 'row.height'], function() {
+ panelContainer.css({ minHeight: scope.height || scope.panel.height || scope.row.height, display: 'block' });
elem.toggleClass('panel-fullscreen', scope.fullscreen ? true : false);
});
}
diff --git a/src/app/partials/dasheditor.html b/src/app/partials/dasheditor.html
index a9de9af2acb..e6ab6070f9f 100644
--- a/src/app/partials/dasheditor.html
+++ b/src/app/partials/dasheditor.html
@@ -31,7 +31,6 @@