mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Fixed filter select for insights.
This commit is contained in:
parent
2c8996b68f
commit
e48610e83d
1 changed files with 5 additions and 1 deletions
|
|
@ -3,7 +3,11 @@ import styles from './PopupForm.module.css';
|
|||
|
||||
export function PopupForm({ className, style, children }) {
|
||||
return (
|
||||
<div className={classNames(styles.form, className)} style={style}>
|
||||
<div
|
||||
className={classNames(styles.form, className)}
|
||||
style={style}
|
||||
onClick={e => e.stopPropagation()}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue