Merge pull request #29 from valueonag/feat/grafical-workflow-editor

fixed type errors
This commit is contained in:
Patrick Motsch 2026-04-05 00:42:12 +02:00 committed by GitHub
commit b0c5b534ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -243,6 +243,14 @@ export function buildSyncFromClickUpList(args: {
{ name: PAYLOAD_DUE, label: 'Fälligkeit', type: 'date' }, { name: PAYLOAD_DUE, label: 'Fälligkeit', type: 'date' },
{ name: PAYLOAD_TIME_H, label: 'Zeitschätzung (Stunden)', type: 'number' }, { name: PAYLOAD_TIME_H, label: 'Zeitschätzung (Stunden)', type: 'number' },
]; ];
if (statusOpts.length > 0) {
standardTrigger.splice(2, 0, {
name: PAYLOAD_STATUS,
label: 'Status',
type: 'clickup_status',
statusOptions: statusOpts,
});
}
const customInput: FormField[] = []; const customInput: FormField[] = [];
const customTrigger: TriggerFormFieldRow[] = []; const customTrigger: TriggerFormFieldRow[] = [];