initial v0.8 pre-release

This commit is contained in:
Gani Georgiev
2022-10-30 10:28:14 +02:00
parent 9cbb2e750e
commit 90dba45d7c
388 changed files with 21580 additions and 13603 deletions
+1 -2
View File
@@ -2,7 +2,6 @@
import { onMount } from "svelte";
import { scale } from "svelte/transition";
import ApiClient from "@/utils/ApiClient";
import CommonHelper from "@/utils/CommonHelper";
import {
Chart,
LineElement,
@@ -44,7 +43,7 @@
resetData();
for (let item of result) {
chartData.push({
x: CommonHelper.getDateTime(item.date).toLocal().toJSDate(),
x: new Date(item.date),
y: item.total,
});
totalRequests += item.total;