File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
packages/data/src/resource-list Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import { ResourceConfig } from '../resource-config/resource-config.service';
10
10
import { ResourceService } from '../resource-config/resource.service' ;
11
11
import { SdkService } from '../sdk/sdk.service' ;
12
12
import { ResourceList } from './resource-list' ;
13
+ import { ListConfigService } from '@ec.components/ui/src/list/list-config.service' ;
13
14
14
15
/** The ResourceListComponent is an extension of ListComponent for SDK ListResources.
15
16
* 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>
42
43
protected notificationService : NotificationsService ,
43
44
protected symbol : SymbolService ,
44
45
protected resourceService : ResourceService ,
46
+ public listConfig : ListConfigService ,
45
47
@Optional ( ) public route : ActivatedRoute
46
48
) {
47
- super ( ) ;
49
+ super ( listConfig ) ;
48
50
this . resourceConfig = this . resourceService . config ;
49
51
if ( route ) {
50
52
route . queryParams . subscribe ( query => {
You can’t perform that action at this time.
0 commit comments