Fix style

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-12-02 14:12:58 +01:00
parent b0e475301a
commit d710f5af73
18 changed files with 71 additions and 52 deletions

View File

@@ -83,7 +83,7 @@ export const description: INodeProperties[] = [
value: 'IMPLEMENTED',
},
],
default: '',
default: 'NOT_STARTED',
description: 'The state of the measure',
},
];
@@ -114,7 +114,7 @@ export async function execute(
}
`;
const input: Record<string, any> = { id };
const input: Record<string, string> = { id };
if (name) input.name = name;
if (description) input.description = description;
if (category) input.category = category;