Compare commits

...

2 Commits

Author SHA1 Message Date
09ec5f0d4d Change logs to warnings, since that's what they really are
(cherry picked from commit 4a7c03307d)
2024-04-12 05:08:39 -07:00
36ba83d9be Increase font size and brightness for better contrast
(cherry picked from commit 0e40f403e4)
2024-04-12 05:08:34 -07:00

View File

@ -79,7 +79,21 @@ function populateChart() {
},
scales: {
x: {
type: 'time'
type: 'time',
ticks: {
color: '#a7a4ab',
font: {
size: 18,
}
},
},
y: {
ticks: {
color: '#a7a4ab',
font: {
size: 18,
}
}
}
},
}
@ -244,7 +258,7 @@ function detectRegionQuery(urlSearchParams) {
}
}
} else {
console.log("An incorrect or malformed region selection was made in the query string");
console.warn("An incorrect or malformed region selection was made in the query string");
}
}
@ -262,7 +276,7 @@ function detectTimeQuery(urlSearchParams) {
}
}
} else {
console.log("An incorrect or malformed time selection was made in the query string");
console.warn("An incorrect or malformed time selection was made in the query string");
}
}
@ -278,7 +292,7 @@ function detectAggregateQuery(urlSearchParams) {
}
aggregateFunctionToggle();
} else {
console.log("An incorrect or malformed aggregate selection was made in the query string");
console.warn("An incorrect or malformed aggregate selection was made in the query string");
}
}