You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2021/01/28 08:13:03 UTC

[superset] branch master updated: fix: samples should not be timeseries (#12796)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5a3c5b1  fix: samples should not be timeseries (#12796)
5a3c5b1 is described below

commit 5a3c5b1f548f4364c32084850f0e6bf471f55ec3
Author: Beto Dealmeida <ro...@dealmeida.net>
AuthorDate: Thu Jan 28 00:12:30 2021 -0800

    fix: samples should not be timeseries (#12796)
---
 superset/viz.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset/viz.py b/superset/viz.py
index f093563..53a509c 100644
--- a/superset/viz.py
+++ b/superset/viz.py
@@ -245,6 +245,7 @@ class BaseViz:
         query_obj = self.query_obj()
         query_obj.update(
             {
+                "is_timeseries": False,
                 "groupby": [],
                 "metrics": [],
                 "orderby": [],