You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ch...@apache.org on 2019/03/21 22:13:51 UTC

[incubator-superset] branch master updated: [SQL Lab] Improved query and results tabs rendering reliability (#7082)

This is an automated email from the ASF dual-hosted git repository.

christine pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 9b58e9f  [SQL Lab] Improved query and results tabs rendering reliability (#7082)
9b58e9f is described below

commit 9b58e9f4920ef424e5b545dcbb4726e22bed5982
Author: Enrico Berti <he...@enricoberti.com>
AuthorDate: Thu Mar 21 23:13:42 2019 +0100

    [SQL Lab] Improved query and results tabs rendering reliability (#7082)
    
    closes #7080
---
 superset/assets/src/SqlLab/components/SouthPane.jsx        | 1 +
 superset/assets/src/SqlLab/components/TabbedSqlEditors.jsx | 1 +
 2 files changed, 2 insertions(+)

diff --git a/superset/assets/src/SqlLab/components/SouthPane.jsx b/superset/assets/src/SqlLab/components/SouthPane.jsx
index e3e51e2..441104c 100644
--- a/superset/assets/src/SqlLab/components/SouthPane.jsx
+++ b/superset/assets/src/SqlLab/components/SouthPane.jsx
@@ -118,6 +118,7 @@ export class SouthPane extends React.PureComponent {
       <div className="SouthPane" ref={this.southPaneRef}>
         <Tabs
           bsStyle="tabs"
+          animation={false}
           id={shortid.generate()}
           activeKey={this.props.activeSouthPaneTab}
           onSelect={this.switchTab}
diff --git a/superset/assets/src/SqlLab/components/TabbedSqlEditors.jsx b/superset/assets/src/SqlLab/components/TabbedSqlEditors.jsx
index 0d4fc5f..c287b70 100644
--- a/superset/assets/src/SqlLab/components/TabbedSqlEditors.jsx
+++ b/superset/assets/src/SqlLab/components/TabbedSqlEditors.jsx
@@ -260,6 +260,7 @@ class TabbedSqlEditors extends React.PureComponent {
     return (
       <Tabs
         bsStyle="tabs"
+        animation={false}
         activeKey={this.props.tabHistory[this.props.tabHistory.length - 1]}
         onSelect={this.handleSelect.bind(this)}
         id="a11y-query-editor-tabs"