Skip to content

Commit

Permalink
Merge pull request #735 from catenax-ng/feature/TRACEFOSS-2798-column…
Browse files Browse the repository at this point in the history
…-menu-fix

chore: TRACEFOSS-2798 fix column bug.
  • Loading branch information
ds-mwesener authored Nov 3, 2023
2 parents 4ebbe50 + bf2513c commit ef9b2d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Added
- Cypress Login to E2E Environment to enable cypress e2e tests.
### Changed
- Fixed table-settings reset bug
### Removed

## [9.0.0-rc1 - 03.11.2023]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class TableSettingsComponent {
}

resetColumns() {
this.dialogColumns = [...this.defaultColumns];
this.dialogColumns = [...this.defaultColumns.filter(value => value!=='menu')];
this.selectAll(true);
}
}

0 comments on commit ef9b2d1

Please sign in to comment.