mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +08:00
firefox bug fix
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{% with id = 'form-select-' + name %}
|
||||
<div class="form-group mb-3">
|
||||
<div class="form-label">{{ label }}</div>
|
||||
<select class="form-select" name="{{ name }}" id="{{ id }}">
|
||||
<select class="form-select" autocomplete="off" name="{{ name }}" id="{{ id }}">
|
||||
{% for option in options %}
|
||||
<option value="{{ option[1] }}" {% if option[1] == value %}
|
||||
selected
|
||||
|
||||
Reference in New Issue
Block a user