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: {
id?: string;
name: string;
detail?: string;
type?: string;
value?: string[];
detail?: string | null;
type?: string | null;
value?: string[] | null;
responsiblePersonId?: string[];
}[];
registeredBranchId?: string;