mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Fixed typo. Added new localization string.
This commit is contained in:
parent
d1c9f78944
commit
255e9d2e41
7 changed files with 22 additions and 7 deletions
|
|
@ -87,6 +87,14 @@ export default function MetricsTable({
|
|||
</div>
|
||||
</div>
|
||||
<div className={styles.body}>
|
||||
{data?.length === 0 && (
|
||||
<div className={styles.empty}>
|
||||
<FormattedMessage
|
||||
id="message.no-data-available"
|
||||
defaultMessage="No data available."
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
{limit
|
||||
? rankings.map(row => getRow(row))
|
||||
: data?.length > 0 && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue