@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.
@@ -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);