fix init order

This commit is contained in:
Dan Percic 2021-10-02 00:36:56 +03:00
parent 7cb8fc5854
commit 22552b58f8

View File

@ -96,7 +96,6 @@ export class DossierOverviewScreenComponent extends ListingComponent<File> imple
private readonly _configService: ConfigService
) {
super(_injector);
this.tableColumnConfigs = this._configService.tableConfig(this.displayedAttributes);
}
get checkedRequiredFilters(): NestedFilter[] {
@ -133,6 +132,7 @@ export class DossierOverviewScreenComponent extends ListingComponent<File> imple
this.fileAttributeConfigs = this._fileAttributesService.getFileAttributeConfig(
this.currentDossier.dossierTemplateId
)?.fileAttributeConfigs;
this.tableColumnConfigs = this._configService.tableConfig(this.displayedAttributes);
try {
this._fileDropOverlayService.initFileDropHandling();