We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a24be22 + 5b5dfdd commit 60a8ebbCopy full SHA for 60a8ebb
packages/elements/src/component-factory-strategy.ts
@@ -89,7 +89,12 @@ export class ComponentNgElementStrategy implements NgElementStrategy {
89
90
if (!this.componentRef) {
91
let initializeComponentFn = () => { this.initializeComponent(element); };
92
+<<<<<<< HEAD
93
NgZone.isInAngularZone() ? initializeComponentFn() : this.ngZone.run(initializeComponentFn);
94
+=======
95
+ NgZone.isInAngularZone() ? initializeComponentFn() :
96
+ this.ngZone.run(initializeComponentFn);
97
+>>>>>>> 5b5dfdd4add9276950e9ce9b76760382ea57a57e
98
}
99
100
0 commit comments