From 1f8a1870ec375b930510bc9dc91ec1361e7bad15 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 14 Aug 2020 21:49:49 -0600 Subject: [PATCH] Adjust default title --- src/components/modals/PlaylistExport.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modals/PlaylistExport.vue b/src/components/modals/PlaylistExport.vue index 23ece42..abee270 100644 --- a/src/components/modals/PlaylistExport.vue +++ b/src/components/modals/PlaylistExport.vue @@ -58,7 +58,7 @@ export default { let date = new Date(); let month = date.getMonth() + 1; month = month < 10 ? `0${month}` : month; - this.name = `Top ${this.config.limit || 10} Tracks - ${date.getFullYear()}/${month}/${date.getDate()}`; + this.name = `Top ${this.config.limit || 10} - ${date.getFullYear()}/${month}/${date.getDate()}`; this.$nextTick(function() { this.container = true;