소스 검색

DashEditView: fix for small ui bug, when having dashboard settings view open and entering panel edit mode, did not cause dash edit view to be closed

Torkel Ödegaard 10 년 전
부모
커밋
71edd9ff1b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      public/app/features/dashboard/viewStateSrv.js

+ 2 - 0
public/app/features/dashboard/viewStateSrv.js

@@ -125,6 +125,8 @@ function (angular, _, $) {
     };
 
     DashboardViewState.prototype.enterFullscreen = function(panelScope) {
+      this.$scope.appEvent('hide-dash-editor');
+
       var docHeight = $(window).height();
       var editHeight = Math.floor(docHeight * 0.3);
       var fullscreenHeight = Math.floor(docHeight * 0.7);