Skip to content

Commit

Permalink
Bugfix for changing kanban size
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Dec 23, 2024
1 parent 412813d commit 79597fc
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export class KanbanColumnComponent implements AfterViewInit, OnChanges, OnDestro

ngOnChanges(changes: SimpleChanges) {
if (changes.query
|| changes.size
// TODO: why is sort.previousValue overwritten?
|| changes.sort && !isEqual(changes.sort.currentValue, this._sort)
|| changes.filter && !isEqual(changes.filter.currentValue, this._filter)) {
Expand Down

0 comments on commit 79597fc

Please sign in to comment.