Skip to content

Commit

Permalink
fix(designer): Accessibility - Set right aria label for concurrency c…
Browse files Browse the repository at this point in the history
…ontrol inputs (#6195)

Set right aria label for inputs
  • Loading branch information
ccastrotrejo authored Dec 2, 2024
1 parent 1968544 commit 2f8066b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/designer/src/lib/ui/settings/sections/general.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export const General = ({
concurrencySubLabel,
/* isSubLabelToggle*/ true
),
ariaLabel: concurrencyTitle,
ariaLabel: concurrencySubLabel,
},
visible: concurrency?.isSupported,
},
Expand All @@ -257,7 +257,7 @@ export const General = ({
onValueChange: onConcurrencyRunValueChange,
sliderLabel: degreeOfParallelism,
readOnly,
ariaLabel: concurrencyTitle,
ariaLabel: degreeOfParallelism,
},
visible: concurrency?.isSupported && concurrency?.value?.enabled,
},
Expand Down

0 comments on commit 2f8066b

Please sign in to comment.