Fixes more linter errors

This commit is contained in:
Rune Harlyk
2025-07-10 21:52:02 +02:00
committed by Rune Harlyk
parent 211ff7205b
commit 7d79ec39ab
4 changed files with 59 additions and 45 deletions
+3 -3
View File
@@ -38,7 +38,7 @@
responsive: true,
plugins: {
legend: { display: true },
tooltip: { mode: 'index', intersect: false },
tooltip: { mode: 'index' as const, intersect: false },
},
elements: { point: { radius: 1 } },
scales: {
@@ -48,8 +48,8 @@
display: false,
},
y: {
type: 'linear',
position: 'left',
type: 'linear' as const,
position: 'left' as const,
min: 0,
max: 10,
grid: { color: bgColor },