Browse Source

HUE-8399 [editor] Hide the right assistant in embedded mode

This can be re-enabled from the outside by setting window.EMBEDDED_ASSISTANT_ENABLED to true
Johan Ahlen 7 years ago
parent
commit
19dd0c4843
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/core/src/desktop/templates/assist.mako

+ 1 - 1
desktop/core/src/desktop/templates/assist.mako

@@ -3399,7 +3399,7 @@ from desktop.views import _ko
 
         var updateContentsForType = function (type) {
           self.functionsTabAvailable(type === 'hive' || type === 'impala' || type === 'pig');
-          self.editorAssistantTabAvailable(type === 'hive' || type === 'impala');
+          self.editorAssistantTabAvailable((!window.IS_EMBEDDED || window.EMBEDDED_ASSISTANT_ENABLED) && (type === 'hive' || type === 'impala'));
           self.dashboardAssistantTabAvailable(type === 'dashboard');
           self.schedulesTabAvailable(false);
           if (type !== 'dashboard') {