Compare commits

..

No commits in common. "09ec5f0d4d809d466c0584e479b7c129d5d1ede3" and "8f6cbbc75dd8837f4dc6276ffaf86dac179e676f" have entirely different histories.

View File

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