We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
aria-label
1 parent 5c872a4 commit 9326b64Copy full SHA for 9326b64
packages/core/src/fields/inputFields/fields/ProgressBar/ProgressBarComponent.svelte
@@ -111,8 +111,9 @@
111
<div
112
class="mb-progress-bar-input"
113
tabindex="0"
114
- bind:this={progressBarEl}
115
role="button"
+ aria-label={value.toString()}
116
+ bind:this={progressBarEl}
117
onkeydown={onKeyPress}
118
onmousedown={onTrackEvent}
119
ontouchstart={onTrackEvent}
@@ -125,7 +126,6 @@
125
126
aria-valuemin={props.minValue}
127
aria-valuemax={props.maxValue}
128
aria-valuenow={value}
- aria-label={value.toString()}
129
130
></div>
131
{#if props.addLabels}
0 commit comments