From c0d3cff71d37fb90decb7f5012f04674f3f8817b Mon Sep 17 00:00:00 2001 From: Jonathan Bennetts Date: Thu, 31 Mar 2022 17:17:16 +0100 Subject: [PATCH] :rotating_light: Fixed lint isssues --- .../nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts b/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts index 4e88388de30aa..8658c22486153 100644 --- a/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts +++ b/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts @@ -183,7 +183,7 @@ export class EventbriteTrigger implements INodeType { description: 'By default does the webhook-data only contain the URL to receive the object data manually. If this option gets activated, it will resolve the data automatically.', }, ], - "subtitle": "Subscribe to get notifications of Eventbrite actions." + 'subtitle': 'Subscribe to get notifications of Eventbrite actions.', }; methods = { @@ -206,7 +206,7 @@ export class EventbriteTrigger implements INodeType { // Get all the available events to display them to user so that he can // select them easily async getEvents(this: ILoadOptionsFunctions): Promise { - const returnData: INodePropertyOptions[] = [{name: "All", value: ""}]; + const returnData: INodePropertyOptions[] = [{name: 'All', value: ''}]; const organization = this.getCurrentNodeParameter('organization'); const events = await eventbriteApiRequestAllItems.call(this, 'events', 'GET', `/organizations/${organization}/events`); for (const event of events) {