You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2019/06/24 20:54:36 UTC

[incubator-superset] branch release--0.33 updated (3328141 -> 4a6f183)

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

michellet pushed a change to branch release--0.33
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 3328141  0.33.0rc1.dev4
     new c8025b2  css: add margin-top to ResultSet (#7679)
     new 4a6f183  0.33.0rc1.dev5

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 superset/assets/package-lock.json                   | 2 +-
 superset/assets/package.json                        | 2 +-
 superset/assets/src/SqlLab/components/ResultSet.jsx | 2 ++
 superset/assets/src/SqlLab/main.less                | 8 ++++++++
 4 files changed, 12 insertions(+), 2 deletions(-)


[incubator-superset] 01/02: css: add margin-top to ResultSet (#7679)

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c8025b26c8d291d8949b23801b8af598ded5994a
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Mon Jun 17 22:57:40 2019 -0700

    css: add margin-top to ResultSet (#7679)
    
    
    (cherry picked from commit f278faa8be4ead1046c0b41c482d27f4f93976b4)
---
 superset/assets/src/SqlLab/components/ResultSet.jsx | 2 ++
 superset/assets/src/SqlLab/main.less                | 8 ++++++++
 2 files changed, 10 insertions(+)

diff --git a/superset/assets/src/SqlLab/components/ResultSet.jsx b/superset/assets/src/SqlLab/components/ResultSet.jsx
index 22b6b0d..98f357e 100644
--- a/superset/assets/src/SqlLab/components/ResultSet.jsx
+++ b/superset/assets/src/SqlLab/components/ResultSet.jsx
@@ -73,6 +73,7 @@ export default class ResultSet extends React.PureComponent {
     // when new results comes in, save them locally and clear in store
     if (this.props.cache && (!nextProps.query.cached)
       && nextProps.query.results
+      && nextProps.query.results.data
       && nextProps.query.results.data.length > 0) {
       this.setState(
         { data: nextProps.query.results.data },
@@ -227,6 +228,7 @@ export default class ResultSet extends React.PureComponent {
       return (
         <Button
           bsSize="sm"
+          className="fetch"
           bsStyle="primary"
           onClick={this.reFetchQueryResults.bind(this, query)}
         >
diff --git a/superset/assets/src/SqlLab/main.less b/superset/assets/src/SqlLab/main.less
index 8faf6fb..e3e2679 100644
--- a/superset/assets/src/SqlLab/main.less
+++ b/superset/assets/src/SqlLab/main.less
@@ -422,3 +422,11 @@ a.Link {
         margin-right: 3px;
     }
 }
+
+.SouthPane .tab-content .alert {
+    margin-top: 10px;
+}
+
+.SouthPane .tab-content button.fetch {
+    margin-top: 10px;
+}


[incubator-superset] 02/02: 0.33.0rc1.dev5

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 4a6f183cc66a003090a09bc3ec02f21f51661b7a
Author: Michelle Thomas <mi...@gmail.com>
AuthorDate: Mon Jun 24 13:51:32 2019 -0700

    0.33.0rc1.dev5
---
 superset/assets/package-lock.json | 2 +-
 superset/assets/package.json      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/superset/assets/package-lock.json b/superset/assets/package-lock.json
index 46f0d62..fbe7402 100644
--- a/superset/assets/package-lock.json
+++ b/superset/assets/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "superset",
-  "version": "0.33.0rc1.dev4",
+  "version": "0.33.0rc1.dev5",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/superset/assets/package.json b/superset/assets/package.json
index 7a81308..8c65bfb 100644
--- a/superset/assets/package.json
+++ b/superset/assets/package.json
@@ -1,6 +1,6 @@
 {
   "name": "superset",
-  "version": "0.33.0rc1.dev4",
+  "version": "0.33.0rc1.dev5",
   "description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
   "license": "Apache-2.0",
   "directories": {