Skip to content

Commit

Permalink
fix(webhooks): default parameters to empty list (#4678)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrogers authored and anotherchrisberry committed Jan 17, 2018
1 parent 5c32bfe commit a7628df
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -45,7 +45,7 @@ export class WebhookStage implements IController {
public methods: string[];
public preconfiguredProperties: string[];
public noUserConfigurableFields: boolean;
public parameters: IWebhookParameter[];
public parameters: IWebhookParameter[] = [];

constructor(public stage: any,
private jsonUtilityService: JsonUtilityService,
Expand Down

0 comments on commit a7628df

Please sign in to comment.