You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2018/08/29 02:22:52 UTC

[GitHub] youngyjd commented on a change in pull request #5767: Fix multilayer geoviz and color picker error

youngyjd commented on a change in pull request #5767: Fix multilayer geoviz and color picker error
URL: https://github.com/apache/incubator-superset/pull/5767#discussion_r213527199
 
 

 ##########
 File path: superset/assets/src/visualizations/deckgl/multi.jsx
 ##########
 @@ -33,7 +33,13 @@ function deckMulti(slice, payload, setControlValue) {
     // Filters applied to multi_deck are passed down to underlying charts
     // note that dashboard contextual information (filter_immune_slices and such) aren't
     // taken into consideration here
-    let filters = subslice.form_data.filters.concat(fd.filters);
+    let filters = [];
+    if (subslice.form_data.filters) {
+      filters = filters.concat(subslice.form_data.filters);
 
 Review comment:
   got you. Thank!

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org