diff --git a/src/components/Settings_section/Setings_downloads.vue b/src/components/Settings_section/Setings_downloads.vue index 1ebd41e..6f8b326 100644 --- a/src/components/Settings_section/Setings_downloads.vue +++ b/src/components/Settings_section/Setings_downloads.vue @@ -79,7 +79,7 @@ const downloadAll = async () => { link.href = url; link.setAttribute( "download", - `documents_${data_start.value}_${data_finish.value}.zip`, + `${selectedFilter.value}_${data_start.value}_${data_finish.value}.zip`, ); document.body.appendChild(link); link.click();