Showing
2 changed files
with
4 additions
and
4 deletions
... | ... | @@ -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 | }) | ... | ... |