Skip to content

Commit

Permalink
fix(appconfig): Fix error thrown when slack object is not defined (#7770
Browse files Browse the repository at this point in the history
) (#7771)

Co-authored-by: Travis Tomsu <ttomsu@google.com>
  • Loading branch information
2 people authored and Matt Duftler committed Jan 13, 2020
1 parent 1a7ae4b commit 67a541f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ module(CORE_APPLICATION_CONFIG_APPLICATIONATTRIBUTES_DIRECTIVE, [
.catch(() => {});
};

this.slackBaseUrl = SETTINGS.slack.baseUrl;
this.slackBaseUrl = get(SETTINGS, 'slack.baseUrl', '');
},
]);

0 comments on commit 67a541f

Please sign in to comment.