Skip to content

Commit 517ae29

Browse files
fix: External click not closing component
1 parent 36b0cb5 commit 517ae29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ColumnsConfiguration/ColumnsConfiguration.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default class ColumnsConfiguration extends React.Component {
5757
let popover = null;
5858
if (this.state.open) {
5959
popover = (
60-
<Popover fixed={true} position={Position.inDocument(this.node)}>
60+
<Popover fixed={true} position={Position.inDocument(this.node)} onExternalClick={this.toggle.bind(this)}>
6161
<div className={styles.popover}>
6262
{title}
6363
<div className={styles.body}>

0 commit comments

Comments
 (0)