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

@@ -36,10 +36,10 @@ export const description: INodeProperties[] = [
action: 'Get a control',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
description: 'Get all controls',
action: 'Get all controls',
description: 'Get many controls',
action: 'Get many controls',
},
{
name: 'Update',

View File

@@ -75,7 +75,7 @@ export const description: INodeProperties[] = [
value: 'EXCLUDED',
},
],
default: '',
default: 'INCLUDED',
description: 'The status of the control',
},
{
@@ -121,7 +121,7 @@ export async function execute(
}
`;
const input: Record<string, any> = { id };
const input: Record<string, string> = { id };
if (sectionTitle) input.sectionTitle = sectionTitle;
if (name) input.name = name;
if (description) input.description = description;