From cf601be2c89c3118e0351e66261135f7936ce444 Mon Sep 17 00:00:00 2001 From: Carlos Emiliano Castro Trejo Date: Wed, 27 Nov 2024 12:21:12 -0600 Subject: [PATCH] Set right aria label for inputs --- libs/designer/src/lib/ui/settings/sections/general.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/designer/src/lib/ui/settings/sections/general.tsx b/libs/designer/src/lib/ui/settings/sections/general.tsx index 69b5e4bbf3b..00068ee4870 100644 --- a/libs/designer/src/lib/ui/settings/sections/general.tsx +++ b/libs/designer/src/lib/ui/settings/sections/general.tsx @@ -242,7 +242,7 @@ export const General = ({ concurrencySubLabel, /* isSubLabelToggle*/ true ), - ariaLabel: concurrencyTitle, + ariaLabel: concurrencySubLabel, }, visible: concurrency?.isSupported, }, @@ -257,7 +257,7 @@ export const General = ({ onValueChange: onConcurrencyRunValueChange, sliderLabel: degreeOfParallelism, readOnly, - ariaLabel: concurrencyTitle, + ariaLabel: degreeOfParallelism, }, visible: concurrency?.isSupported && concurrency?.value?.enabled, },