Browse Source
Feature/extend activities table component by showAccountColumn input (#5556)
* Extend activities table component by showAccountColumn input
* Update changelog
pull/5557/head^2
Raj Gupta
15 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
11 additions and
0 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activities-table/activities-table.component.ts
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### 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 |
|
|
|
|
|
@ -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'; |
|
|
|