Commit 392edbae1a4e223dbfb6dda6f166b706f40c7a2b

Authored by Igor Kulikov
1 parent b459d75f

Fix typo

... ... @@ -151,8 +151,8 @@ export class CustomActionPrettyResourcesTabsComponent extends PageComponent impl
151 151 }
152 152
153 153 private initAceEditors() {
154   - this.aceResize$ = new ResizeObserver((enteris) => {
155   - enteris.forEach((entry) => {
  154 + this.aceResize$ = new ResizeObserver((entries) => {
  155 + entries.forEach((entry) => {
156 156 const editor = this.aceEditors.find(aceEditor => aceEditor.container === entry.target);
157 157 this.onAceEditorResize(editor);
158 158 })
... ...
... ... @@ -270,8 +270,8 @@ export class WidgetEditorComponent extends PageComponent implements OnInit, OnDe
270 270 }
271 271
272 272 private initAceEditors() {
273   - this.aceResize$ = new ResizeObserver((enteris) => {
274   - enteris.forEach((entry) => {
  273 + this.aceResize$ = new ResizeObserver((entries) => {
  274 + entries.forEach((entry) => {
275 275 const editor = this.aceEditors.find(aceEditor => aceEditor.container === entry.target);
276 276 this.onAceEditorResize(editor);
277 277 })
... ...