Fix tooltip label, retention report for mysql, pass minDate into eventsChart

This commit is contained in:
Francis Cao 2024-08-27 16:02:43 -07:00
parent a5e2242486
commit ab050e51c5
4 changed files with 14 additions and 13 deletions

View file

@ -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>
);
})}