Fixed filter select for insights.
This commit is contained in:
@@ -3,7 +3,11 @@ import styles from './PopupForm.module.css';
|
|||||||
|
|
||||||
export function PopupForm({ className, style, children }) {
|
export function PopupForm({ className, style, children }) {
|
||||||
return (
|
return (
|
||||||
<div className={classNames(styles.form, className)} style={style}>
|
<div
|
||||||
|
className={classNames(styles.form, className)}
|
||||||
|
style={style}
|
||||||
|
onClick={e => e.stopPropagation()}
|
||||||
|
>
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user