fix(form): make group-type select options visible on Windows Chrome
This commit is contained in:
parent
cd8d5673d1
commit
7cf0af6b74
1 changed files with 8 additions and 2 deletions
|
|
@ -149,9 +149,15 @@ export function GroupRequestForm() {
|
|||
className={INPUT_CLS}
|
||||
style={{ fontFamily: FONT }}
|
||||
>
|
||||
<option value="">Оберіть тип</option>
|
||||
<option value="" style={{ color: '#272727', background: '#fff' }}>
|
||||
Оберіть тип
|
||||
</option>
|
||||
{GROUP_TYPES.map((t) => (
|
||||
<option key={t.value} value={t.label}>
|
||||
<option
|
||||
key={t.value}
|
||||
value={t.label}
|
||||
style={{ color: '#272727', background: '#fff' }}
|
||||
>
|
||||
{t.label}
|
||||
</option>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue