format according to prettier

This commit is contained in:
Omar Hussein 2024-03-25 11:39:19 -04:00
parent baa55fa46f
commit 50d81f5faf
3 changed files with 11 additions and 9 deletions

View File

@ -6,7 +6,11 @@
<div class="card-content">
<p>{{ $t("prompts.copyMessage") }}</p>
<file-list ref="fileList" @update:selected="(val) => (dest = val)" tabindex="1" />
<file-list
ref="fileList"
@update:selected="(val) => (dest = val)"
tabindex="1"
/>
</div>
<div
@ -31,17 +35,17 @@
:aria-label="$t('buttons.cancel')"
:title="$t('buttons.cancel')"
tabindex="3"
>
>
{{ $t("buttons.cancel") }}
</button>
<button
id="focus-prompt"
class="button button--flat"
class="button button--flat"
@click="copy"
:aria-label="$t('buttons.copy')"
:title="$t('buttons.copy')"
tabindex="2"
>
>
{{ $t("buttons.copy") }}
</button>
</div>

View File

@ -45,7 +45,7 @@
:aria-label="$t('buttons.move')"
:title="$t('buttons.move')"
tabindex="2"
>
>
{{ $t("buttons.move") }}
</button>
</div>

View File

@ -71,11 +71,9 @@ export default {
"filesInUpload",
"filesInUploadCount",
"uploadSpeed",
"eta"
]),
...mapWritableState(useFileStore, [
"reload"
"eta",
]),
...mapWritableState(useFileStore, ["reload"]),
...mapActions(useUploadStore, ["reset"]),
formattedETA() {
if (!this.eta || this.eta === Infinity) {