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