Skip to content

Commit

Permalink
fix val method
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonTod committed Feb 10, 2023
1 parent 939e94b commit 8e0e852
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 @@ -3041,7 +3041,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 8e0e852

Please sign in to comment.