the build currently does not like override for some reason

This commit is contained in:
Bruno Windels 2021-10-01 14:07:58 +02:00
parent 39d5073f49
commit cc58d27122

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();
} }