diff --git a/resources/views/Main.vue b/resources/views/Main.vue
index 0715dc1..0bf4005 100644
--- a/resources/views/Main.vue
+++ b/resources/views/Main.vue
@@ -14,6 +14,9 @@
Найти
Скачать
+
+
+
BETA
@@ -34,7 +37,7 @@ export default {
fetching: ref(false),
downloadAvailable: ref(false),
downloadLink: '',
- downloadFileName: '',
+ downloadThumbnail: '',
hint: ref(''),
error: ref(false),
errorText: ref(''),
@@ -57,6 +60,7 @@ export default {
} else if (responce.data.link){
this.downloadAvailable = true;
this.downloadLink = `/api/v1/file/download/${responce.data.link}`;
+ this.downloadThumbnail = responce.data.thumbnail;
}
}).catch((error)=>{
this.fetching = false;