Skip to content

Commit 37912e9

Browse files
authored
Fix for multiple Select (#113)
The value of multiple attribute in the select element should be a boolean.
1 parent 3103e33 commit 37912e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: kitchen-sink.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ <h2 class="text-2xl font-bold">Reset styles</h2>
104104
</label>
105105
<label class="block">
106106
<span class="text-gray-700">Select (multiple)</span>
107-
<select class="form-multiselect block w-full mt-1" multiple="">
107+
<select class="form-multiselect block w-full mt-1" multiple>
108108
<option>Option 1</option>
109109
<option>Option 2</option>
110110
<option>Option 3</option>

0 commit comments

Comments
 (0)