Merge pull request #545 from vector-im/bwindels/fixbuild
the build currently does not like override for some reason
This commit is contained in:
commit
6517704850
1 changed files with 5 additions and 5 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue