소스 검색

HUE-8461 [report] Execute dom unload code just on report mode

Enrico Berti 7 년 전
부모
커밋
a2fe26d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      desktop/libs/dashboard/src/dashboard/templates/common_search.mako

+ 2 - 0
desktop/libs/dashboard/src/dashboard/templates/common_search.mako

@@ -5018,9 +5018,11 @@ $(document).ready(function () {
 
   huePubSub.subscribe('app.dom.unload', function (app) {
     if (app === 'dashboard') {
+      %if is_report:
       if (ApiHelper.getInstance().getFromTotalStorage('assist', 'right_assist_panel_visible', false)) {
         huePubSub.publish('right.assist.show');
       }
+      %endif
       $gridster.destroy();
     }
   }, 'dashboard');