Browse Source

Merge branch 'main' into imp/issue_template

pull/5557/head
Raj Gupta 1 month ago
committed by GitHub
parent
commit
18dbbd66d1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 7
      libs/ui/src/lib/activities-table/activities-table.component.ts

4
CHANGELOG.md

@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added a dedicated Slack community link
### Added
- Added an option to configure the account column of the activities table component
### Changed
- Renamed the show access token dialog component to user account registration dialog component

7
libs/ui/src/lib/activities-table/activities-table.component.ts

@ -104,6 +104,7 @@ export class GfActivitiesTableComponent
@Input() locale = getLocale();
@Input() pageIndex: number;
@Input() pageSize = DEFAULT_PAGE_SIZE;
@Input() showAccountColumn = true;
@Input() showActions = true;
@Input() showCheckbox = false;
@Input() showNameColumn = true;
@ -192,6 +193,12 @@ export class GfActivitiesTableComponent
'actions'
];
if (!this.showAccountColumn) {
this.displayedColumns = this.displayedColumns.filter((column) => {
return column !== 'account';
});
}
if (!this.showCheckbox) {
this.displayedColumns = this.displayedColumns.filter((column) => {
return column !== 'importStatus' && column !== 'select';

Loading…
Cancel
Save