You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the data set contains an array with an empty string as the first element, it doesnt behave as expected.
This is due to the way weld detects arrays (cf line 198).
A simple fix would be to have at line 198:
} else if (value.length && typeof value[0] !== 'undefined') {
instead of
} else if (value.length && value[0]) {
The text was updated successfully, but these errors were encountered:
If the data set contains an array with an empty string as the first element, it doesnt behave as expected.
This is due to the way weld detects arrays (cf line 198).
A simple fix would be to have at line 198:
} else if (value.length && typeof value[0] !== 'undefined') {
instead of
} else if (value.length && value[0]) {
The text was updated successfully, but these errors were encountered: