Browse Source

Feature/set select column to sticky in lazy loaded activities table (#2755)

* Set select column to sticky

* Update changelog
pull/2762/head
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
c1446f8559
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 2
      libs/ui/src/lib/activities-table-lazy/activities-table-lazy.component.html

6
CHANGELOG.md

@ -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
### Changed
- Set the select column of the lazy-loaded activities table to stick at the end (experimental)
## 2.31.0 - 2023-12-16
### Changed

2
libs/ui/src/lib/activities-table-lazy/activities-table-lazy.component.html

@ -74,7 +74,7 @@
[matSortDirection]="sortDirection"
[matSortDisabled]="sortDisabled"
>
<ng-container matColumnDef="select">
<ng-container matColumnDef="select" sticky>
<th *matHeaderCellDef class="px-1" mat-header-cell>
<mat-checkbox
color="primary"

Loading…
Cancel
Save