hughhhh commented on a change in pull request #5057: Translate string to array 
for multi fields in getControlsState
URL: 
https://github.com/apache/incubator-superset/pull/5057#discussion_r190262556
 
 

 ##########
 File path: superset/assets/src/explore/store.js
 ##########
 @@ -56,6 +56,10 @@ export function getControlsState(state, form_data) {
       delete control.mapStateToProps;
     }
 
+    if (control.multi && typeof formData[k] === 'string') {
 
 Review comment:
   nit: `formData[k] = (control.multi && typeof formData[k] === 'string') ? 
[formData[k]] : formData[k]`

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

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

Reply via email to