Added Started At Date Field

This commit is contained in:
Ahmad 2024-11-07 20:29:32 -05:00
parent c6e2a88f1c
commit 514ae94f43
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
5 changed files with 50 additions and 16 deletions

View file

@ -80,6 +80,7 @@ export const Actions = ({ data }: ActionsProps) => {
Copy
</Button>
<DatePicker
type='dueDate'
variant='gray'
className='w-full justify-start text-black'
size='inline'
@ -88,6 +89,16 @@ export const Actions = ({ data }: ActionsProps) => {
boardId={params.boardId as string}
card={data}
/>
<DatePicker
type='startedAtDate'
variant='gray'
className='w-full justify-start text-black'
size='inline'
placeholder='Add Started Date'
afterSelectText='Started '
boardId={params.boardId as string}
card={data}
/>
<Button
onClick={onDelete}
disabled={isLoadingDelete}