We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36d0eca commit f7bc0aaCopy full SHA for f7bc0aa
packages/main/src/BusyIndicator.js
@@ -53,7 +53,10 @@ const metadata = {
53
* @defaultvalue "Medium"
54
* @public
55
*/
56
- size: { type: BusyIndicatorSize, defaultValue: BusyIndicatorSize.Medium },
+ size: {
57
+ type: BusyIndicatorSize,
58
+ defaultValue: BusyIndicatorSize.Medium,
59
+ },
60
61
/**
62
* Defines if the busy indicator is visible on the screen. By default it is not.
@@ -62,7 +65,9 @@ const metadata = {
65
* @defaultvalue false
63
66
64
67
- active: { type: Boolean },
68
+ active: {
69
+ type: Boolean,
70
71
},
72
};
73
@@ -108,7 +113,7 @@ class BusyIndicator extends UI5Element {
108
113
if (this.active) {
109
114
this.tabIndex = -1;
110
115
} else {
111
- this.tabIndex = 0;
116
+ this.removeAttribute("tabindex");
112
117
}
118
119
0 commit comments