Skip to content

Commit

Permalink
Update property-table.component.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
heinerwalter authored Feb 2, 2025
1 parent 3ff85a3 commit 37b12fd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,13 +229,12 @@ export class PropertyTableComponent implements OnInit, OnChanges {
for (let i = 0; i < columns.length; i++) {
const column: PropertyTableColumn = columns[i];

const label = column.property.getLabel(undefined, 'table');
tableHeader[tableHeader.length - 1].push({
elementType: 'header',
content: this.filter,
propertyConfiguration: new PropertyConfiguration({
propertyName: this.generateFilterPropertyName(i, column.property),
label: label ? 'Filter: ' + label : 'Filter',
label: 'Filter',
propertyType: 'string',
editable: true,
}),
Expand Down

0 comments on commit 37b12fd

Please sign in to comment.