forked from github/plane
chore: custom month select modal validation added (#4027)
This commit is contained in:
parent
56d4e25431
commit
991b8e7703
@ -98,6 +98,8 @@ export const SelectMonthModal: React.FC<Props> = ({ type, initialValues, isOpen,
|
|||||||
hasError={Boolean(errors.close_in)}
|
hasError={Boolean(errors.close_in)}
|
||||||
placeholder="Enter Months"
|
placeholder="Enter Months"
|
||||||
className="w-full border-custom-border-200"
|
className="w-full border-custom-border-200"
|
||||||
|
min={1}
|
||||||
|
max={12}
|
||||||
/>
|
/>
|
||||||
<span className="absolute right-8 top-2.5 text-sm text-custom-text-200">Months</span>
|
<span className="absolute right-8 top-2.5 text-sm text-custom-text-200">Months</span>
|
||||||
</div>
|
</div>
|
||||||
@ -130,6 +132,8 @@ export const SelectMonthModal: React.FC<Props> = ({ type, initialValues, isOpen,
|
|||||||
hasError={Boolean(errors.archive_in)}
|
hasError={Boolean(errors.archive_in)}
|
||||||
placeholder="Enter Months"
|
placeholder="Enter Months"
|
||||||
className="w-full border-custom-border-200"
|
className="w-full border-custom-border-200"
|
||||||
|
min={1}
|
||||||
|
max={12}
|
||||||
/>
|
/>
|
||||||
<span className="absolute right-8 top-2.5 text-sm text-custom-text-200">Months</span>
|
<span className="absolute right-8 top-2.5 text-sm text-custom-text-200">Months</span>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user