@netgrif/components-core 6.2.7 → 6.2.8
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.
- package/esm2020/lib/tabs/classes/tab-view.mjs +2 -2
- package/esm2020/lib/tabs/interfaces.mjs +1 -1
- package/fesm2015/netgrif-components-core.mjs +2 -1
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +1 -1
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/tabs/interfaces.d.ts +2 -0
- package/package.json +1 -1
|
@@ -19801,7 +19801,7 @@ class TabView {
|
|
|
19801
19801
|
];
|
|
19802
19802
|
providers.push({
|
|
19803
19803
|
provide: NAE_VIEW_ID_SEGMENT,
|
|
19804
|
-
useValue: tab.initial ? tab.uniqueId : TabView.DYNAMIC_TAB_VIEW_ID_SEGMENT
|
|
19804
|
+
useValue: tab.initial ? tab.uniqueId : (tab.injectedObject?.loadFilter?.id ?? TabView.DYNAMIC_TAB_VIEW_ID_SEGMENT)
|
|
19805
19805
|
});
|
|
19806
19806
|
const injector = Injector.create({ providers, parent: this._parentInjector });
|
|
19807
19807
|
tab.portal = new ComponentPortal(tab.tabContentComponent, null, injector);
|