This commit is contained in:
Sébastien Thuret 2021-10-24 19:14:09 +02:00
parent 4f0d19dbc4
commit 73ebb96171
No known key found for this signature in database
GPG key ID: 4742E2D66933BB08
3 changed files with 23 additions and 16 deletions

View file

@ -196,14 +196,17 @@
<p>[[ inputFile.name ]]</p>
</div>
<div class="col s2">
<button @click="removeFile" class="btn-flat">
<button v-if="loadingFileTranslation !== true" @click="removeFile" class="btn-flat">
<i class="material-icons">close</i>
</button>
</div>
</div>
</div>
</div>
<button @click="translateFile" class="btn">Translate</button>
<button @click="translateFile" v-if="loadingFileTranslation === false" class="btn">Translate</button>
<div class="progress" v-if="loadingFileTranslation">
<div class="indeterminate"></div>
</div>
</div>
</div>
</div>