Skip to content

Commit

Permalink
fix: Fix handling of app setting when console: true
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Feb 25, 2022
1 parent c79008c commit 806888e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class ServerlessEnterprisePlugin {
if (!sls.service.service) {
missing.push('service');
}
if (missing.length > 0) {
if (missing.length > 0 || !this.isDashboardEnabled) {
this.sfeEnabledHooks = {};
} else {
this.sfeEnabledHooks = {
Expand Down

0 comments on commit 806888e

Please sign in to comment.