This commit is contained in:
2020-04-18 03:14:38 +02:00
parent 6f89d4cd27
commit 2971880ee9

View File

@@ -23,7 +23,7 @@ export default function Content() {
<div className={classes.root}>
<Route exact path="/" component={Overview} />
<Route path="/resources" component={SelectResource} />
<Route path="/resourcechart/:id" render={() => <ResourceChart day={Date.now()}></ResourceChart>} />
<Route path="/resourcechart/:id" render={() => <ResourceChart day={new Date().toUTCString()}></ResourceChart>} />
</div>
);