Showing
1 changed file
with
1 additions
and
1 deletions
| ... | ... | @@ -269,7 +269,7 @@ const QxFieldPopover: React.FC<QxFieldPopoverProp> = (props) => { |
| 269 | 269 | content={fieldsPopContent()} |
| 270 | 270 | placement={'bottomRight'} |
| 271 | 271 | trigger={props.disabled ? undefined : props.trigger || 'click'} |
| 272 | - open={visible} | |
| 272 | + open={props.disabled ? false : visible} | |
| 273 | 273 | onOpenChange={(v) => { |
| 274 | 274 | if (!v) { |
| 275 | 275 | setTimeout(() => { | ... | ... |