Skip to content

Commit

Permalink
fix(row-active): remove debounce time
Browse files Browse the repository at this point in the history
  • Loading branch information
Hjalmers committed Aug 7, 2023
1 parent 8421d59 commit 641bc45
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion projects/core/src/lib/core.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ export class CoreComponent implements OnDestroy {
/** page change event - emitted when current page/index changes for pagination */
@Output() pageChange = new EventEmitter<GtPageChangeEvent>();
rowActive$ = this._rowActive$.asObservable().pipe(
debounceTime(50),
distinctUntilChanged((p, q) => {
if (this.rowIdKey && p.row && q.row) {
return p.row[this.rowIdKey] === q.row[this.rowIdKey];
Expand Down

0 comments on commit 641bc45

Please sign in to comment.