diff --git a/frontend/src/app/components/wp-card-view/wp-card-view.component.html b/frontend/src/app/components/wp-card-view/wp-card-view.component.html
index 2688850ccb..75997fc4cc 100644
--- a/frontend/src/app/components/wp-card-view/wp-card-view.component.html
+++ b/frontend/src/app/components/wp-card-view/wp-card-view.component.html
@@ -32,17 +32,6 @@
[hidden]="wp.isNew"
[textContent]="text.wpAddedBy(wp)">
-
-
@@ -117,16 +116,9 @@ export class WorkPackageCardViewComponent extends WorkPackageEmbeddedTableCompon
this.registerCreationCallback();
- combine(
- this.querySpace.columns,
- this.querySpace.results
- )
- .values$()
- .pipe(
+ this.querySpace.results.values$().pipe(
untilComponentDestroyed(this)
- )
- .subscribe(([columns, results]) => {
-
+ ).subscribe((results) => {
if (this.activeInlineCreateWp) {
this.workPackages = [...results.$embedded.elements, this.activeInlineCreateWp];
} else {
@@ -134,12 +126,6 @@ export class WorkPackageCardViewComponent extends WorkPackageEmbeddedTableCompon
}
this.removeDragged();
-
- this.columns = columns;
- this.availableColumns = this.columns.filter(function (column) {
- return column.id !== 'id' && column.id !== 'subject' && column.id !== 'author';
- });
-
this.cdRef.detectChanges();
});
}