mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Fix lint issue and comparison
This commit is contained in:
parent
49f42b97ef
commit
96a112f01d
|
@ -125,7 +125,7 @@ export class Kitemaker implements INodeType {
|
||||||
|
|
||||||
const responseData = await kitemakerRequest.call(this, { query: getStatuses });
|
const responseData = await kitemakerRequest.call(this, { query: getStatuses });
|
||||||
const { data: { organization: { spaces } } } = responseData;
|
const { data: { organization: { spaces } } } = responseData;
|
||||||
const space = spaces.find((e: { [x: string]: string; }) => e.id == spaceId)
|
const space = spaces.find((e: { [x: string]: string; }) => e.id === spaceId);
|
||||||
|
|
||||||
return createLoadOptions(space.statuses);
|
return createLoadOptions(space.statuses);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue