mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Filter out null entries.
This commit is contained in:
parent
8739e3624f
commit
d91fd2492c
2 changed files with 9 additions and 5 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import React from 'react';
|
||||
import MetricsTable from './MetricsTable';
|
||||
import { osFilter } from 'lib/filters';
|
||||
|
||||
export default function OSTable({ websiteId, startDate, endDate, limit, onExpand }) {
|
||||
return (
|
||||
|
|
@ -11,6 +12,7 @@ export default function OSTable({ websiteId, startDate, endDate, limit, onExpand
|
|||
startDate={startDate}
|
||||
endDate={endDate}
|
||||
limit={limit}
|
||||
dataFilter={osFilter}
|
||||
onExpand={onExpand}
|
||||
/>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue