Skip to content
Snippets Groups Projects
Commit 5e208ea1 authored by Leah Tacke genannt Unterberg's avatar Leah Tacke genannt Unterberg
Browse files

minor fix

parent 5b9483f8
No related branches found
No related tags found
No related merge requests found
Pipeline #498711 passed
...@@ -36,6 +36,7 @@ async function startSessionAction() { ...@@ -36,6 +36,7 @@ async function startSessionAction() {
} }
async function uploadAction() { async function uploadAction() {
if (!!dbUploadForm.file) {
loading.value = true loading.value = true
await api.uploadDB(dbUploadForm.file).then(res => { await api.uploadDB(dbUploadForm.file).then(res => {
if (res) { if (res) {
...@@ -44,6 +45,7 @@ async function uploadAction() { ...@@ -44,6 +45,7 @@ async function uploadAction() {
} }
}).finally(() => loading.value = false) }).finally(() => loading.value = false)
} }
}
async function connectAction() { async function connectAction() {
loading.value = true loading.value = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment