diff --git a/client/pages/library/_library/calendar.vue b/client/pages/library/_library/calendar.vue index ecae1a96..8fe2d00a 100644 --- a/client/pages/library/_library/calendar.vue +++ b/client/pages/library/_library/calendar.vue @@ -94,7 +94,7 @@
-
+
{{ episode.podcastTitle }}
@@ -346,12 +346,12 @@ export default { isSameDay(date1, date2) { return this.formatDateKey(date1) === this.formatDateKey(date2) }, - getEpisodeColorClass(episode) { + getItemColorClass(episode) { const podcastId = episode.podcastId || episode.libraryItemId - const hash = this.simpleHash(podcastId) + const hash = this.itemGroupingHash(podcastId) return this.itemColors[hash % this.itemColors.length] }, - simpleHash(str) { + itemGroupingHash(str) { let hash = 0 if (!str) return hash