Fix:Local playback session store date/dayOfWeek string to be used in stats

This commit is contained in:
advplyr 2022-05-11 17:35:04 -05:00
parent caea6c6371
commit c6323f8ad9
3 changed files with 9 additions and 6 deletions

View file

@ -154,7 +154,7 @@ export default {
this.showingTooltipIndex = index
this.tooltipEl.style.display = 'block'
this.tooltipTextEl.innerHTML = block.value ? `<strong>${block.value} minutes listening</strong> on ${block.datePretty}` : `No listening sessions on ${block.datePretty}`
this.tooltipTextEl.innerHTML = block.value ? `<strong>${this.$elapsedPretty(block.value, true)} listening</strong> on ${block.datePretty}` : `No listening sessions on ${block.datePretty}`
const calculateRect = this.tooltipEl.getBoundingClientRect()