From dacfa2afeda8727592be3c5417bf622019161f57 Mon Sep 17 00:00:00 2001 From: Yunwen Zheng Date: Mon, 20 Oct 2025 09:40:13 -0400 Subject: [PATCH] ConnectStep: Provisioning connect step input error highlighted (#112539) ConnectStep: Provisioning connect step input error highlight --- public/app/features/provisioning/Wizard/ConnectStep.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/provisioning/Wizard/ConnectStep.tsx b/public/app/features/provisioning/Wizard/ConnectStep.tsx index 5f6d9db9267..06acdb5d57e 100644 --- a/public/app/features/provisioning/Wizard/ConnectStep.tsx +++ b/public/app/features/provisioning/Wizard/ConnectStep.tsx @@ -71,6 +71,7 @@ export const ConnectStep = memo(function ConnectStep() { id="token" placeholder={gitFields.tokenConfig.placeholder} isConfigured={tokenConfigured} + invalid={!!errors?.repository?.token?.message} onReset={() => { setValue('repository.token', ''); setTokenConfigured(false);