Skip to content

Commit

Permalink
fix val method
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonTod committed May 31, 2023
1 parent 83190aa commit 31dd14b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/bootstrap-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -3063,7 +3063,7 @@

if (!Array.isArray(value)) value = [ value ];

value.map(String);
value = value.map(String);

for (var i = 0; i < selectedOptions.length; i++) {
var item = selectedOptions[i];
Expand Down

0 comments on commit 31dd14b

Please sign in to comment.