"Slight" bug fixed

main
furo 2021-11-13 21:14:45 +01:00
parent f29c46b919
commit 9ca85455af
2 changed files with 2 additions and 3 deletions

View File

@ -146,7 +146,6 @@
Chart.defaults.global.defaultFontFamily = "Manrope Regular"
Chart.defaults.global.defaultFontColor = "#9090AF"
console.log(Chart.defaults)
const myChart = new Chart(ctx, {
type: 'line',
options: {

View File

@ -17,11 +17,11 @@
<div class="sorting">
<label for="asc">
<input type="radio" name="sortBy" id="asc" value="asc">
<input type="radio" name="order" id="asc" value="asc">
Sort Ascending
</label>
<label for="desc">
<input type="radio" name="sortBy" id="desc" value="desc">
<input type="radio" name="order" id="desc" value="desc">
Sort Descending
</label>
</div>