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.
1 parent 27e5907 commit 1b9a3ffCopy full SHA for 1b9a3ff
components/picker/stories/template.js
@@ -116,6 +116,7 @@ export const Template = ({
116
isOpen = false,
117
isInvalid = false,
118
isDisabled = false,
119
+ isLoading = false,
120
withSwitch = false,
121
fieldLabelStyle = {},
122
fieldLabelId = "default-picker",
@@ -135,14 +136,15 @@ export const Template = ({
135
136
isOpen,
137
isInvalid,
138
isDisabled,
139
+ isLoading,
140
content,
141
labelPosition,
142
ariaLabeledBy: fieldLabelId,
143
...args
144
});
145
146
const popoverMarkup = content.length !== 0 ? Popover({
- isOpen: isOpen && !isDisabled,
147
+ isOpen: isOpen && !isDisabled && !isLoading,
148
withTip: false,
149
position: "bottom",
150
isQuiet,
0 commit comments