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
Options is currently mapped to _options to convert "raw" options to objects with label/value for objects it uses this check if (!op.value) op.value = op.label;
to check for ops without values however this is incorrectly flagged on a value of 0 I'd suggest the check is changed to if(op.value == undefined)
The text was updated successfully, but these errors were encountered:
Options is currently mapped to _options to convert "raw" options to objects with label/value for objects it uses this check
if (!op.value) op.value = op.label;
to check for ops without values however this is incorrectly flagged on a value of 0 I'd suggest the check is changed to
if(op.value == undefined)
The text was updated successfully, but these errors were encountered: