refactor: also allow null as payload value
This commit is contained in:
parent
4fc88b9872
commit
1a255b6046
1 changed files with 3 additions and 3 deletions
|
|
@ -31,9 +31,9 @@ type WorkflowPayload = {
|
|||
step: {
|
||||
id?: string;
|
||||
name: string;
|
||||
detail?: string;
|
||||
type?: string;
|
||||
value?: string[];
|
||||
detail?: string | null;
|
||||
type?: string | null;
|
||||
value?: string[] | null;
|
||||
responsiblePersonId?: string[];
|
||||
}[];
|
||||
registeredBranchId?: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue