mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-14 18:51:34 +03:00
Pull request 1792: 5633-invalid-date
Updates #5633. Squashed commit of the following: commit 889bc7acb82472d72d7b3103554e70342513a567 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Mar 30 14:31:42 2023 +0300 client: fix dashboard date
This commit is contained in:
parent
da9008aba3
commit
a0349b6c7e
@ -185,7 +185,7 @@ const Dashboard = ({
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<Statistics
|
<Statistics
|
||||||
interval={stats.interval}
|
interval={msToDays(stats.interval)}
|
||||||
dnsQueries={stats.dnsQueries}
|
dnsQueries={stats.dnsQueries}
|
||||||
blockedFiltering={stats.blockedFiltering}
|
blockedFiltering={stats.blockedFiltering}
|
||||||
replacedSafebrowsing={stats.replacedSafebrowsing}
|
replacedSafebrowsing={stats.replacedSafebrowsing}
|
||||||
|
@ -9,11 +9,12 @@ import round from 'lodash/round';
|
|||||||
import { useSelector } from 'react-redux';
|
import { useSelector } from 'react-redux';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './Line.css';
|
import './Line.css';
|
||||||
|
import { msToDays } from '../../helpers/helpers';
|
||||||
|
|
||||||
const Line = ({
|
const Line = ({
|
||||||
data, color = 'black',
|
data, color = 'black',
|
||||||
}) => {
|
}) => {
|
||||||
const interval = useSelector((state) => state.stats.interval);
|
const interval = msToDays(useSelector((state) => state.stats.interval));
|
||||||
|
|
||||||
return <ResponsiveLine
|
return <ResponsiveLine
|
||||||
enableArea
|
enableArea
|
||||||
|
Loading…
Reference in New Issue
Block a user