refactor: also allow null as payload value

This commit is contained in:
Methapon Metanipat 2024-11-05 08:33:25 +07:00
parent 4fc88b9872
commit 1a255b6046

View file

@ -31,9 +31,9 @@ type WorkflowPayload = {
step: { step: {
id?: string; id?: string;
name: string; name: string;
detail?: string; detail?: string | null;
type?: string; type?: string | null;
value?: string[]; value?: string[] | null;
responsiblePersonId?: string[]; responsiblePersonId?: string[];
}[]; }[];
registeredBranchId?: string; registeredBranchId?: string;