fix exception in list.renderView() introduced by adding debouncer.run()

Use arrow function to keep "this" at the same value it has in render().
This commit is contained in:
Oliver Gerlich 2018-07-19 21:46:35 +02:00
parent 141c8b798e
commit 2fca4b49fe
1 changed files with 1 additions and 1 deletions

View File

@ -407,7 +407,7 @@ export class ListView extends View {
} }
render () { render () {
this.debouncer.run(this.renderView); this.debouncer.run(() => { this.renderView(); });
} }
renderView () { renderView () {