Skip to content

Commit a64b473

Browse files
authored
Merge pull request #43 from JulianDroog/bug/remove-empty-option-multiselect
Bug/remove empty option multiselect
2 parents 9fce59c + a33a15e commit a64b473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Datatable/Datatable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Datatable
135135
if (columnsSearch[colIdx].type !== undefined) {
136136
switch (columnsSearch[colIdx].type) {
137137
case 'multiple':
138-
cell.html('<select class="form-select-multiple" multiple="multiple"><option value=""></option></select>');
138+
cell.html('<select class="form-select-multiple" multiple="multiple"></select>');
139139
columnsSearch[colIdx].data.forEach(function (data) {
140140
$(
141141
'select',

0 commit comments

Comments
 (0)