Merge pull request #545 from vector-im/bwindels/fixbuild

the build currently does not like override for some reason
This commit is contained in:
Bruno Windels 2021-10-01 14:09:07 +02:00 committed by GitHub
commit 6517704850
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,12 +211,12 @@ class TilesListView extends ListView<SimpleTile, TileView> {
this.onChanged = onChanged; this.onChanged = onChanged;
} }
override onReset() { onReset() {
super.onReset(); super.onReset();
this.onChanged(); this.onChanged();
} }
override onUpdate(index: number, value: SimpleTile, param: any) { onUpdate(index: number, value: SimpleTile, param: any) {
if (param === "shape") { if (param === "shape") {
const ExpectedClass = viewClassForEntry(value); const ExpectedClass = viewClassForEntry(value);
const child = this.getChildInstanceByIndex(index); const child = this.getChildInstanceByIndex(index);
@ -232,17 +232,17 @@ class TilesListView extends ListView<SimpleTile, TileView> {
this.onChanged(); this.onChanged();
} }
override onAdd(idx: number, value: SimpleTile) { onAdd(idx: number, value: SimpleTile) {
super.onAdd(idx, value); super.onAdd(idx, value);
this.onChanged(); this.onChanged();
} }
override onRemove(idx: number, value: SimpleTile) { onRemove(idx: number, value: SimpleTile) {
super.onRemove(idx, value); super.onRemove(idx, value);
this.onChanged(); this.onChanged();
} }
override onMove(fromIdx: number, toIdx: number, value: SimpleTile) { onMove(fromIdx: number, toIdx: number, value: SimpleTile) {
super.onMove(fromIdx, toIdx, value); super.onMove(fromIdx, toIdx, value);
this.onChanged(); this.onChanged();
} }