Showing
1 changed file
with
1 additions
and
1 deletions
@@ -145,7 +145,7 @@ const QxCheckboxFieldPopover: React.FC<QxCheckboxFieldPopoverProp> = (props) => | @@ -145,7 +145,7 @@ const QxCheckboxFieldPopover: React.FC<QxCheckboxFieldPopoverProp> = (props) => | ||
145 | } | 145 | } |
146 | placement={'bottomRight'} | 146 | placement={'bottomRight'} |
147 | trigger={props.disabled ? undefined : props.trigger || 'click'} | 147 | trigger={props.disabled ? undefined : props.trigger || 'click'} |
148 | - open={visible} | 148 | + open={props.disabled ? false: visible} |
149 | onOpenChange={(v) => { | 149 | onOpenChange={(v) => { |
150 | setVisible(v); | 150 | setVisible(v); |
151 | }} | 151 | }} |