Skip to content

Commit

Permalink
fix: date-picker HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
si3nloong committed Dec 26, 2021
1 parent 1326315 commit 14e042c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions components/date-picker/src/Calendar.svelte
Expand Up @@ -81,10 +81,7 @@
<i class="resp-calendar-prev-icon" />
</span>
<div class="resp-calendar__header-caption">
<button class="resp-calendar__icon"
>{monthNames[selectedMonth].substr(0, 3)}
</button>
<button class="resp-calendar__icon">{selectedYear}</button>
{`${monthNames[selectedMonth].substring(0, 3)} ${selectedYear}`}
</div>
<span class="resp-calendar__icon" on:click={handleNextMonth}>
<i class="resp-calendar-next-icon" />
Expand Down

0 comments on commit 14e042c

Please sign in to comment.