fix(async-table): bind callback in updateTableFrom call

This commit is contained in:
Sarah Vaupel 2020-01-07 11:16:00 +01:00 committed by Gregor Kleen
parent 2620fb2f95
commit cd3e72c0f1

View File

@ -255,7 +255,7 @@ export class AsyncTable {
};
}
this._ignoreRequest = false;
this._updateTableFrom(url, callback);
this._updateTableFrom(url, callback && callback.bind(this));
}
_serializeTableFilterToURL(tableFilterForm) {