Start implementing with back-end. Create workflows completed and fetching workflows on server side as well, to show them in the table.

This commit is contained in:
Joao Correia
2025-01-29 17:50:03 +00:00
parent 42a8ec2f8a
commit 011c6e9e30
6 changed files with 82 additions and 18 deletions

View File

@@ -37,11 +37,11 @@ export interface WorkflowStep {
completedDate?: number,
assignees: (User["id"])[];
firstStep?: boolean,
currentStep?: boolean,
currentStep: boolean,
finalStep?: boolean,
selected: boolean,
selected?: boolean,
comments?: string,
onClick: React.MouseEventHandler<HTMLDivElement>
onClick?: React.MouseEventHandler<HTMLDivElement>
}
export interface EditableWorkflowStep {