mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 22:57:12 +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 }) {
|
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>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue