mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
Fix tooltip label, retention report for mysql, pass minDate into eventsChart
This commit is contained in:
parent
a5e2242486
commit
ab050e51c5
4 changed files with 14 additions and 13 deletions
|
|
@ -64,7 +64,7 @@ export function RetentionTable({ days = DAYS }) {
|
|||
key={day}
|
||||
className={classNames(styles.cell, { [styles.empty]: !percentage })}
|
||||
>
|
||||
{percentage ? `${percentage.toFixed(2)}%` : ''}
|
||||
{percentage ? `${Number(percentage).toFixed(2)}%` : ''}
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue