Skip to content

Commit

Permalink
Select: fix the bug when the value is Boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
cs1707 committed Jun 8, 2021
1 parent 5ba0f1c commit 71eef6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/select/src/select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@
}
if (option) return option;
const label = (!isObject && !isNull && !isUndefined)
? value : '';
? String(value) : '';
let newOption = {
value: value,
currentLabel: label
Expand Down

0 comments on commit 71eef6b

Please sign in to comment.