Skip to content
Snippets Groups Projects
Unverified Commit be15c8f4 authored by syuilo's avatar syuilo Committed by GitHub
Browse files

fix chart clean

parent 80fa92fb
No related branches found
No related tags found
No related merge requests found
......@@ -452,8 +452,8 @@ export default abstract class Chart<T extends Schema> {
const current = dateUTC(Chart.getCurrentDate());
// 一日以上前かつ三日以内
const gt = Chart.dateToTimestamp(current) - (1000 * 60 * 60 * 24 * 3);
const lt = Chart.dateToTimestamp(current) - (1000 * 60 * 60 * 24);
const gt = Chart.dateToTimestamp(current) - (60 * 60 * 24 * 3);
const lt = Chart.dateToTimestamp(current) - (60 * 60 * 24);
const columns = {} as Record<string, number>;
for (const [k, v] of Object.entries(this.schema)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment