We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f0b3eb commit 4130191Copy full SHA for 4130191
packages/angular/cli/models/analytics.ts
@@ -448,7 +448,7 @@ export function hasGlobalAnalyticsConfiguration(): boolean {
448
&& globalWorkspace.getCli()
449
&& globalWorkspace.getCli()['analytics'];
450
451
- if (analyticsConfig !== undefined) {
+ if (analyticsConfig !== null && analyticsConfig !== undefined) {
452
return true;
453
}
454
} catch {}
0 commit comments