Fixes a typo in headerfilter plugin (#24342)

This commit is contained in:
Cheena Malhotra
2023-09-08 09:30:06 -07:00
committed by GitHub
parent 80f7049cc5
commit a5d3833ffb

View File

@@ -265,7 +265,7 @@ export class HeaderFilter<T extends Slick.SlickData> extends Disposable {
if (!filterItem || filterItem.indexOf('Error:') < 0) { if (!filterItem || filterItem.indexOf('Error:') < 0) {
let element = new TableFilterListElement(filterItem, filtered); let element = new TableFilterListElement(filterItem, filtered);
this._register(element); this._register(element);
this.listData.push(); this.listData.push(element);
} }
} }