From 5da7030c766549726fc07182779d3436fcf7b032 Mon Sep 17 00:00:00 2001 From: Angus McLeod Date: Thu, 30 Mar 2023 12:19:00 +0800 Subject: [PATCH] FIX: autofocus is causing issues on long steps --- .../javascripts/discourse/components/custom-wizard-step.js.es6 | 2 -- 1 file changed, 2 deletions(-) diff --git a/assets/javascripts/discourse/components/custom-wizard-step.js.es6 b/assets/javascripts/discourse/components/custom-wizard-step.js.es6 index ee318b60..7c933771 100644 --- a/assets/javascripts/discourse/components/custom-wizard-step.js.es6 +++ b/assets/javascripts/discourse/components/custom-wizard-step.js.es6 @@ -115,8 +115,6 @@ export default Component.extend({ schedule("afterRender", () => { if ($(".invalid .wizard-focusable").length) { this.animateInvalidFields(); - } else { - $(".wizard-focusable:first").focus(); } }); });