Commit 0430bb47 by Johannes Schill

panel-header: Simplify condition

parent 0a5f920b
...@@ -6,7 +6,7 @@ class Popover extends PureComponent<UsingPopperProps> { ...@@ -6,7 +6,7 @@ class Popover extends PureComponent<UsingPopperProps> {
render() { render() {
const { children, hidePopper, showPopper, className, ...restProps } = this.props; const { children, hidePopper, showPopper, className, ...restProps } = this.props;
const togglePopper = restProps.show === true ? hidePopper : showPopper; const togglePopper = restProps.show ? hidePopper : showPopper;
return ( return (
<div className={`popper__manager ${className}`} onClick={togglePopper}> <div className={`popper__manager ${className}`} onClick={togglePopper}>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment