Browse Source
Task/improve name display in activities table (#7043)
* Do not wrap name
* Update changelog
pull/7044/head^2
Thomas Kaul
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
6 additions and
7 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activities-table/activities-table.component.html
|
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Changed |
|
|
|
|
|
|
|
- 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 language localization for German (`de`) |
|
|
|
|
|
|
|
|
|
|
|
@ -161,13 +161,11 @@ |
|
|
|
<ng-container i18n>Name</ng-container> |
|
|
|
</th> |
|
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
|
<div class="align-items-center d-flex line-height-1"> |
|
|
|
<div> |
|
|
|
<span class="text-truncate">{{ element.SymbolProfile?.name }}</span> |
|
|
|
@if (element.isDraft) { |
|
|
|
<span class="badge badge-secondary ml-1" i18n>Draft</span> |
|
|
|
} |
|
|
|
</div> |
|
|
|
<div class="align-items-center d-flex line-height-1 text-nowrap"> |
|
|
|
<span class="text-truncate">{{ element.SymbolProfile?.name }}</span> |
|
|
|
@if (element.isDraft) { |
|
|
|
<span class="badge badge-secondary ml-1" i18n>Draft</span> |
|
|
|
} |
|
|
|
</div> |
|
|
|
@if ( |
|
|
|
element.SymbolProfile?.dataSource !== 'MANUAL' && |
|
|
|
|