Streamfield: remove "Add" button when maxItems is reached

This commit is contained in:
Alex Gleason
2023-04-05 15:56:42 -05:00
parent 088f7e0b0e
commit a875163ed9

View File

@ -87,10 +87,9 @@ const Streamfield: React.FC<IStreamfield> = ({
</Stack>
)}
{onAddItem && (
{(onAddItem && (values.length < maxItems)) && (
<Button
onClick={onAddItem}
disabled={values.length >= maxItems}
theme='secondary'
block
>