From eb59bc1c0892a8ad8231a27e735986aade4ccd48 Mon Sep 17 00:00:00 2001 From: frankie139506 <97017043+frankie139506@users.noreply.github.com> Date: Mon, 8 Aug 2022 20:17:17 +0800 Subject: [PATCH] [JENKINS-68957] Job configuration page SCM radio buttons have an odd selection animation (#6930) Co-authored-by: Alexander Brandes --- core/src/main/resources/lib/form/radioBlock/radioBlock.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/resources/lib/form/radioBlock/radioBlock.js b/core/src/main/resources/lib/form/radioBlock/radioBlock.js index 3d11d82c76ff..40c5d3ed669c 100644 --- a/core/src/main/resources/lib/form/radioBlock/radioBlock.js +++ b/core/src/main/resources/lib/form/radioBlock/radioBlock.js @@ -20,8 +20,10 @@ var radioBlockSupport = { while((n = n.next()) != blockEnd) { if (show) { n.classList.remove("form-container--hidden") + n.style.position = ""; } else { n.classList.add("form-container--hidden") + n.style.position = "absolute"; } } layoutUpdateCallback.call();