Browse Source

Task/improve name display in activities table (#7043)

* Do not wrap name

* Update changelog
pull/7044/head^2
Thomas Kaul 7 days ago
committed by GitHub
parent
commit
10fffd68cb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 4
      libs/ui/src/lib/activities-table/activities-table.component.html

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved the styling of the checkboxes to consistently use the primary color in their states - Improved the styling of the checkboxes to consistently use the primary color in their states
- Improved the name display in the activities table
- Improved the user id display in the users table of the admin control panel - Improved the user id display in the users table of the admin control panel
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)

4
libs/ui/src/lib/activities-table/activities-table.component.html

@ -161,14 +161,12 @@
<ng-container i18n>Name</ng-container> <ng-container i18n>Name</ng-container>
</th> </th>
<td *matCellDef="let element" class="px-1" mat-cell> <td *matCellDef="let element" class="px-1" mat-cell>
<div class="align-items-center d-flex line-height-1"> <div class="align-items-center d-flex line-height-1 text-nowrap">
<div>
<span class="text-truncate">{{ element.SymbolProfile?.name }}</span> <span class="text-truncate">{{ element.SymbolProfile?.name }}</span>
@if (element.isDraft) { @if (element.isDraft) {
<span class="badge badge-secondary ml-1" i18n>Draft</span> <span class="badge badge-secondary ml-1" i18n>Draft</span>
} }
</div> </div>
</div>
@if ( @if (
element.SymbolProfile?.dataSource !== 'MANUAL' && element.SymbolProfile?.dataSource !== 'MANUAL' &&
!isUUID(element.SymbolProfile?.symbol) !isUUID(element.SymbolProfile?.symbol)

Loading…
Cancel
Save