@acorex/components 4.2.28 → 4.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -13486,7 +13486,8 @@ class AXTabPageHostComponent {
|
|
|
13486
13486
|
active() {
|
|
13487
13487
|
const func = this.componentRef?.instance?.onActivated;
|
|
13488
13488
|
if (func) {
|
|
13489
|
-
func();
|
|
13489
|
+
const f = func.bind(this.componentRef.instance);
|
|
13490
|
+
f();
|
|
13490
13491
|
}
|
|
13491
13492
|
}
|
|
13492
13493
|
async ngAfterViewInit() {
|