Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2021-06-16 19:45:56 +0300
committerGitHub <noreply@github.com>2021-06-16 19:45:56 +0300
commitb014ba8802a514d361caa693c72eec610aa946b1 (patch)
tree26e897f1532b8750b6954a390664a06dbda64b28
parent9449bf0a6ba280d21eeec113defb5ad6b89429f6 (diff)
parent6ca2eba0cf038ded8482d0b0d89de83d0cce31dd (diff)
Merge pull request #319 from HouraisanNEET/patch-chart.jsv22.0.0beta5
Fix Chart.js Syntax
-rw-r--r--js/script.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/script.js b/js/script.js
index cbcb192..519841b 100644
--- a/js/script.js
+++ b/js/script.js
@@ -263,12 +263,12 @@
options: {
plugins: { legend: { display: false } },
scales: {
- yAxes: [{
+ yAxes: {
ticks: {
min: 0,
stepSize: stepSize
}
- }]
+ }
}
}
});
@@ -321,12 +321,12 @@
options: {
plugins: { legend: { display: false } },
scales: {
- yAxes: [{
+ yAxes: {
ticks: {
min: 0,
stepSize: stepSize
}
- }]
+ }
}
}
});