style: fix missing quotes

This commit is contained in:
Adorian Doran 2024-12-03 00:17:33 +02:00
parent 994255451d
commit d5ff354e2f

View File

@ -39,7 +39,7 @@ const DROPDOWN_TPL = `
${Object.entries(MONTHS).map(([i, month]) => `<option value=${i}>${month}</option>`)}
</select>
<button class="calendar-btn bx bx-chevron-right data-calendar-toggle="next"></button>
<button class="calendar-btn bx bx-chevron-right" data-calendar-toggle="next"></button>
</div>
<div class="calendar-year-selector">
@ -47,7 +47,7 @@ const DROPDOWN_TPL = `
<input type="number" min="1900" max="2999" step="1" data-calendar-input="year" />
<button class="calendar-btn bx bx-chevron-right data-calendar-toggle="nextYear"></button>
<button class="calendar-btn bx bx-chevron-right" data-calendar-toggle="nextYear"></button>
</div>
</div>