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