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
This snippet renders this: <option value="1" label="1" title="Option 1" selected="selected">1</option>
instead of this: <option value="1" label="" title="Option 1" selected="selected"></option>
When label is omitted totally ( { title: 'Option 1', value: '1', selected: true} ) this behavior is ok.
But when label is explicitly set to empty string then multiselect should not override it.
The text was updated successfully, but these errors were encountered:
This snippet renders this:
<option value="1" label="1" title="Option 1" selected="selected">1</option>
instead of this:
<option value="1" label="" title="Option 1" selected="selected"></option>
When label is omitted totally ( { title: 'Option 1', value: '1', selected: true} ) this behavior is ok.
But when label is explicitly set to empty string then multiselect should not override it.
The text was updated successfully, but these errors were encountered: