# HG changeset patch # User Sascha Wilde # Date 1568312643 -7200 # Node ID cdd332dbebbfa04ffc95d9b7cf123756843cc882 # Parent 024b16a1c2538c99f10687235b64e66dd7038727 Fixed date in filename for stretch download. diff -r 024b16a1c253 -r cdd332dbebbf client/src/components/stretches/Stretches.vue --- a/client/src/components/stretches/Stretches.vue Thu Sep 12 20:08:29 2019 +0200 +++ b/client/src/components/stretches/Stretches.vue Thu Sep 12 20:24:03 2019 +0200 @@ -152,7 +152,7 @@ const link = document.createElement("a"); const now = new Date(); link.href = window.URL.createObjectURL(response.data); - link.download = `${name}-${format(now, "YYYY-mm-DD")}.zip`; + link.download = `${name}-${format(now, "YYYY-MM-DD")}.zip`; document.body.appendChild(link); link.click(); document.body.removeChild(link);