diff --git a/ui.frontend/src/view/FormField.js b/ui.frontend/src/view/FormField.js index a4b9d9c7d7..c079e35e23 100644 --- a/ui.frontend/src/view/FormField.js +++ b/ui.frontend/src/view/FormField.js @@ -77,11 +77,9 @@ class FormField { setActive() { if (!this.isActive()) { this.element.setAttribute(Constants.DATA_ATTRIBUTE_ACTIVE, true); - this.element.scrollIntoView({ behavior: 'smooth', block: 'start' }); } if (this.parentView && this.parentView.setActive) { this.parentView.setActive(); - this.element.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }