We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a33c40 commit ef2d332Copy full SHA for ef2d332
packages/main/src/BusyIndicator.hbs
@@ -8,7 +8,7 @@
8
aria-valuemin="0"
9
aria-valuemax="100"
10
aria-valuetext="Busy"
11
- aria-labelledby="{{_id}}-label"
+ aria-labelledby="{{labelId}}"
12
>
13
<div class="ui5-busyindicator-circles-wrapper">
14
<div class="ui5-busyindicator-circle circle-animation-0"></div>
packages/main/src/BusyIndicator.js
@@ -174,6 +174,10 @@ class BusyIndicator extends UI5Element {
174
return this.i18nBundle.getText(BUSY_INDICATOR_TITLE);
175
}
176
177
+ get labelId() {
178
+ return this.text ? `${this._id}-label` : undefined;
179
+ }
180
+
181
get classes() {
182
return {
183
root: {
0 commit comments