File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
components/picker/stories Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ export default {
97
97
} ,
98
98
isHovered,
99
99
isActive,
100
- content : { table : { disable : true } } ,
100
+ popoverContent : { table : { disable : true } } ,
101
101
} ,
102
102
args : {
103
103
rootClass : "spectrum-Picker" ,
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export const Template = ({
126
126
// Helps ensure that Popover appears below the Picker, with side labels layout.
127
127
display : "block" ,
128
128
} ,
129
- content = [ ] ,
129
+ popoverContent = [ ] ,
130
130
} = { } , context = { } ) => {
131
131
const pickerMarkup = Picker ( {
132
132
size,
@@ -136,17 +136,17 @@ export const Template = ({
136
136
isDisabled,
137
137
isLoading,
138
138
placeholder,
139
- content ,
139
+ popoverContent ,
140
140
labelPosition,
141
141
ariaLabeledBy : fieldLabelId ,
142
142
} , context ) ;
143
143
144
- const popoverMarkup = content . length !== 0 ? Popover ( {
144
+ const popoverMarkup = popoverContent . length !== 0 ? Popover ( {
145
145
isOpen : isOpen && ! isDisabled && ! isLoading ,
146
146
withTip : false ,
147
147
position : "bottom" ,
148
148
isQuiet,
149
- content,
149
+ content : popoverContent ,
150
150
size,
151
151
customStyles : customPopoverStyles ,
152
152
} , context ) : "" ;
You can’t perform that action at this time.
0 commit comments