mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 11:05:36 +01:00
feature:(dashboard): parse error to error display
This commit is contained in:
parent
a2f36e7ef2
commit
119830c946
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ export default function MetricsTable({
|
|||
return (
|
||||
<div className={classNames(styles.container, className)}>
|
||||
{!data && loading && <Loading />}
|
||||
{error && <ErrorMessage />}
|
||||
{error && <ErrorMessage error={error} />}
|
||||
{data && !error && <DataTable {...props} data={filteredData} className={className} />}
|
||||
<div className={styles.footer}>
|
||||
{data && !error && limit && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue