mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
small fix for png width error when resize in edit mode / fullscreen mode
This commit is contained in:
parent
e3561ce555
commit
73c5883f0d
@ -59,6 +59,10 @@ function (angular, $, kbn, moment, _) {
|
|||||||
function render_panel() {
|
function render_panel() {
|
||||||
if (!data) { return; }
|
if (!data) { return; }
|
||||||
|
|
||||||
|
if ($rootScope.fullscreen && !scope.fullscreen) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!setElementHeight()) { return; }
|
if (!setElementHeight()) { return; }
|
||||||
|
|
||||||
if (_.isString(data)) {
|
if (_.isString(data)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user