Merge pull request #7900 from opf/fix/31720-group-by-header-line-to-short

[31720] "group by"-header line to short

[ci skip]
pull/7901/head
Oliver Günther 5 years ago committed by GitHub
commit 8c65c07c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      frontend/src/app/components/wp-fast-table/builders/modes/grouped/grouped-rows-builder.ts

@ -49,7 +49,8 @@ export class GroupedRowsBuilder extends RowsBuilder {
}
public get colspan() {
return this.wpTableColumns.columnCount + 1;
// Columns + manual sorting column + settings column
return this.wpTableColumns.columnCount + 2;
}
public buildRows() {

Loading…
Cancel
Save