Skip to content

Commit

Permalink
🚨 Fixed lint isssues
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom committed Mar 31, 2022
1 parent c139494 commit c0d3cff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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<INodePropertyOptions[]> {
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) {
Expand Down

0 comments on commit c0d3cff

Please sign in to comment.