Merge pull request #29 from valueonag/feat/grafical-workflow-editor
fixed type errors
This commit is contained in:
commit
b0c5b534ff
1 changed files with 8 additions and 0 deletions
|
|
@ -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[] = [];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue