Compare commits
No commits in common. "4c842ac1b106aae50dec173151927f95a7e019f7" and "4365025dd7873610ae59d2890ff6c330aa7f1dd5" have entirely different histories.
4c842ac1b1
...
4365025dd7
3 changed files with 9 additions and 9 deletions
|
@ -1,2 +1,2 @@
|
||||||
requests==2.32.3
|
requests==2.32.3
|
||||||
fastapi[standard]==0.115.12
|
fastapi[standard]==0.115.8
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -97,7 +97,7 @@ addEventListener("load", () => {
|
||||||
|
|
||||||
createChart(
|
createChart(
|
||||||
ctxUsers,
|
ctxUsers,
|
||||||
range.map((d) => d.toISOString().split("T")[0]).reverse(),
|
range.map((d) => d.toISOString().slice(0, 10)).reverse(),
|
||||||
results.map((r) => {
|
results.map((r) => {
|
||||||
const total = Intl.NumberFormat(navigator.language || "en-US", {
|
const total = Intl.NumberFormat(navigator.language || "en-US", {
|
||||||
notation: "compact",
|
notation: "compact",
|
||||||
|
@ -122,7 +122,7 @@ addEventListener("load", () => {
|
||||||
|
|
||||||
createChart(
|
createChart(
|
||||||
ctxBytes,
|
ctxBytes,
|
||||||
range.map((d) => d.toISOString().split("T")[0]).reverse(),
|
range.map((d) => d.toISOString().slice(0, 10)).reverse(),
|
||||||
results.map((r) => {
|
results.map((r) => {
|
||||||
return {
|
return {
|
||||||
type: "line",
|
type: "line",
|
||||||
|
@ -142,7 +142,7 @@ addEventListener("load", () => {
|
||||||
|
|
||||||
createChart(
|
createChart(
|
||||||
ctxBytes2,
|
ctxBytes2,
|
||||||
range.map((d) => d.toISOString().split("T")[0]).reverse(),
|
range.map((d) => d.toISOString().slice(0, 10)).reverse(),
|
||||||
results.map((r) => {
|
results.map((r) => {
|
||||||
return {
|
return {
|
||||||
type: "line",
|
type: "line",
|
||||||
|
|
Loading…
Add table
Reference in a new issue