diff --git a/packages/common/src/lib/entity/entity-table/entity-table.component.ts b/packages/common/src/lib/entity/entity-table/entity-table.component.ts index 86a86ada66..452d993d5a 100644 --- a/packages/common/src/lib/entity/entity-table/entity-table.component.ts +++ b/packages/common/src/lib/entity/entity-table/entity-table.component.ts @@ -290,7 +290,7 @@ export class EntityTableComponent implements OnInit, OnDestroy { window.getSelection().addRange(range); event.stopImmediatePropagation(); - const records = this.store.stateView.all() + const records = this.store.stateView.all(); const recordIndex = records.indexOf(record); const lastRecordChecked = this.store.stateView.get(this.lastRecordCheckedKey); const lastRecordIndex = records.indexOf(lastRecordChecked); diff --git a/packages/geo/src/lib/geometry/geometry-form-field/geometry-form-field-input.component.ts b/packages/geo/src/lib/geometry/geometry-form-field/geometry-form-field-input.component.ts index bf2d080d50..d1febf2a27 100644 --- a/packages/geo/src/lib/geometry/geometry-form-field/geometry-form-field-input.component.ts +++ b/packages/geo/src/lib/geometry/geometry-form-field/geometry-form-field-input.component.ts @@ -160,7 +160,7 @@ export class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Contr } this._drawStyle = value; - var olGuideStyle = this.getGuideStyleFromDrawStyle(value); + const olGuideStyle = this.getGuideStyleFromDrawStyle(value); if (olGuideStyle !== undefined) { this.defaultDrawStyleRadius = olGuideStyle.getImage().getRadius(); } else { @@ -547,7 +547,7 @@ export class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Contr * @param resolution Resolution (to make the screen size of symbol fit the drawGuide value) */ private updateDrawStyleWithDrawGuide(olStyle: OlStyle, resolution: number) { - var olGuideStyle = this.getGuideStyleFromDrawStyle(olStyle); + const olGuideStyle = this.getGuideStyleFromDrawStyle(olStyle); if (olGuideStyle === undefined) { return; }