Browse Source
Bugfix/fix styling in activities table footer (#648)
* Fix styling
* Update changelog
pull/650/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
6 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activities-table/activities-table.component.html
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the styling in the footer row of the activities table |
|
|
|
|
|
|
|
## 1.106.0 - 23.01.2022 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -80,7 +80,7 @@ |
|
|
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell mat-sort-header> |
|
|
|
Type |
|
|
|
</th> |
|
|
|
<td mat-cell *matCellDef="let element" class="px-1"> |
|
|
|
<td *matCellDef="let element" mat-cell class="px-1"> |
|
|
|
<div |
|
|
|
class="d-inline-flex p-1 type-badge" |
|
|
|
[ngClass]="{ |
|
|
@ -262,11 +262,7 @@ |
|
|
|
<span class="d-none d-lg-block">{{ element.Account?.name }}</span> |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
<td |
|
|
|
*matFooterCellDef |
|
|
|
class="d-none d-lg-table-cell px-1" |
|
|
|
mat-footer-cell |
|
|
|
></td> |
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td> |
|
|
|
</ng-container> |
|
|
|
|
|
|
|
<ng-container matColumnDef="actions"> |
|
|
|