Merge pull request #435 from Hexastack/321-issue-missing-validation-on-number-of-button-in-blockform
Some checks are pending
Build and Push Docker API Image / build-and-push (push) Waiting to run
Build and Push Docker Base Image / build-and-push (push) Waiting to run
Build and Push Docker NLU Image / build-and-push (push) Waiting to run
Build and Push Docker UI Image / build-and-push (push) Waiting to run

fix: sync UI button max number validation with the API validation
This commit is contained in:
Med Marrouchi 2024-12-13 06:45:49 +01:00 committed by GitHub
commit c32c4e17e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ const ButtonsInput: FC<ButtonsInput> = ({
value,
onChange,
minInput = 1,
maxInput = 13,
maxInput = 3,
disablePayload = false,
fieldPath,
}) => {