mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 16:45:35 +01:00
Fixed array conversion for UTM report.
This commit is contained in:
parent
f4a9336f9d
commit
96af798d42
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "umami",
|
"name": "umami",
|
||||||
"version": "2.10.2",
|
"version": "2.11.0",
|
||||||
"description": "A simple, fast, privacy-focused alternative to Google Analytics.",
|
"description": "A simple, fast, privacy-focused alternative to Google Analytics.",
|
||||||
"author": "Umami Software, Inc. <hello@umami.is>",
|
"author": "Umami Software, Inc. <hello@umami.is>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import ListTable from 'components/metrics/ListTable';
|
||||||
import styles from './UTMView.module.css';
|
import styles from './UTMView.module.css';
|
||||||
import { useMessages } from 'components/hooks';
|
import { useMessages } from 'components/hooks';
|
||||||
|
|
||||||
function toArray(data: { [key: string]: number }) {
|
function toArray(data: { [key: string]: number } = {}) {
|
||||||
return Object.keys(data)
|
return Object.keys(data)
|
||||||
.map(key => {
|
.map(key => {
|
||||||
return { name: key, value: data[key] };
|
return { name: key, value: data[key] };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue