mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Removing dashes from timeout field (#1326)
This commit is contained in:
parent
f2e7db0260
commit
9b19aed5ad
@ -65,9 +65,7 @@ export default function InputElement({
|
||||
disabled={disabled}
|
||||
multiple={multiple}
|
||||
>
|
||||
{field !== undefined && field.value === '' && (
|
||||
<option value="">---</option>
|
||||
)}
|
||||
{field !== undefined && field.value === '' && <option value="" />}
|
||||
{sortedOptions &&
|
||||
(sortedOptions as string[]).map((option: string, index: number) => (
|
||||
<option key={index} value={option}>
|
||||
|
Loading…
Reference in New Issue
Block a user