mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 19:15:37 +01:00
More updates to event data report.
This commit is contained in:
parent
7c467db27e
commit
2f4d669836
13 changed files with 202 additions and 173 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { Icon, Text, TooltipPopup } from 'react-basics';
|
||||
import { Icon, TooltipPopup } from 'react-basics';
|
||||
import Icons from 'components/icons';
|
||||
import Empty from 'components/common/Empty';
|
||||
import { useMessages } from 'hooks';
|
||||
|
|
@ -13,7 +13,7 @@ export function ParameterList({ items = [], children, onRemove }) {
|
|||
{items.map((item, index) => {
|
||||
return (
|
||||
<div key={index} className={styles.item}>
|
||||
<Text>{typeof children === 'function' ? children(item) : item}</Text>
|
||||
{typeof children === 'function' ? children(item) : item}
|
||||
<TooltipPopup
|
||||
className={styles.icon}
|
||||
label={formatMessage(labels.remove)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue