Only make first button disabled (#3052)
This commit is contained in:
parent
93df9b98d3
commit
d1d7a4ae4e
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ export const MultiLineInput = ({
|
||||||
onClick={() => remove(index)}
|
onClick={() => remove(index)}
|
||||||
tabIndex={-1}
|
tabIndex={-1}
|
||||||
aria-label={t("common:remove")}
|
aria-label={t("common:remove")}
|
||||||
isDisabled={index === fields.length - 1}
|
isDisabled={index === 0}
|
||||||
>
|
>
|
||||||
<MinusCircleIcon />
|
<MinusCircleIcon />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
Loading…
Reference in a new issue