Filter out null entries.

This commit is contained in:
Mike Cao 2020-08-23 18:01:27 -07:00
parent 8739e3624f
commit d91fd2492c
2 changed files with 9 additions and 5 deletions

View file

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