Skip to content

Commit

Permalink
[TASK] Fix CSS class for select item in backend module (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
derhansen authored Jun 22, 2024
1 parent 23906f7 commit 68e7258
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ private function selectorBox($optArray, $name, string|array|null $value, bool $m
) . '</option>';
}

return '<select class="form-control" name="' . htmlspecialchars(
return '<select class="form-select" name="' . htmlspecialchars(
$name . ($multiple ? '[]' : ''),
ENT_QUOTES | ENT_HTML5
) . '"' . ($multiple ? ' multiple' : '') . '>' . implode('', $options) . '</select>';
Expand Down

0 comments on commit 68e7258

Please sign in to comment.