1
0

Split typed list/grid elements into normal and search result

This commit is contained in:
lotte
2019-10-03 16:26:58 +02:00
parent 5b6aa951ad
commit 9badabade6
146 changed files with 2094 additions and 860 deletions

View File

@@ -18,8 +18,8 @@ export class SearchResultGridElementComponent<T extends SearchResult<K>, K exten
dso: K;
isCollapsed$: Observable<boolean>;
public constructor(@Inject('objectElementProvider') public listableObject: ListableObject, protected truncatableService: TruncatableService) {
super(listableObject);
public constructor(protected truncatableService: TruncatableService) {
super();
if (hasValue(this.object)) {
this.dso = this.object.indexableObject;
this.isCollapsed$ = this.isCollapsed();