Skip to content

Commit 2826ac4

Browse files
committed
fix: resource-list.component
1 parent d3eff9b commit 2826ac4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/data/src/resource-list/resource-list.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { ResourceConfig } from '../resource-config/resource-config.service';
1010
import { ResourceService } from '../resource-config/resource.service';
1111
import { SdkService } from '../sdk/sdk.service';
1212
import { ResourceList } from './resource-list';
13+
import { ListConfigService } from '@ec.components/ui/src/list/list-config.service';
1314

1415
/** The ResourceListComponent is an extension of ListComponent for SDK ListResources.
1516
* It is meant to be extended and overriden the createList method. See e.g. AssetListComponent. */
@@ -42,9 +43,10 @@ export class ResourceListComponent extends ListComponent<Resource>
4243
protected notificationService: NotificationsService,
4344
protected symbol: SymbolService,
4445
protected resourceService: ResourceService,
46+
public listConfig: ListConfigService,
4547
@Optional() public route: ActivatedRoute
4648
) {
47-
super();
49+
super(listConfig);
4850
this.resourceConfig = this.resourceService.config;
4951
if (route) {
5052
route.queryParams.subscribe(query => {

0 commit comments

Comments
 (0)