Skip to content

Commit 3189a58

Browse files
committed
fix: remove lowercase of value from text so pre-selection works
1 parent 6534dfa commit 3189a58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blocks/form/form-fields.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const createSelect = async (fd) => {
9494
} else {
9595
options = fd.Options.split(',').map((opt) => ({
9696
text: opt.trim(),
97-
value: opt.trim().toLowerCase(),
97+
value: opt.trim(),
9898
}));
9999
}
100100

0 commit comments

Comments
 (0)