format according to prettier
This commit is contained in:
parent
baa55fa46f
commit
50d81f5faf
@ -6,7 +6,11 @@
|
|||||||
|
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>{{ $t("prompts.copyMessage") }}</p>
|
<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>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
@ -31,17 +35,17 @@
|
|||||||
:aria-label="$t('buttons.cancel')"
|
:aria-label="$t('buttons.cancel')"
|
||||||
:title="$t('buttons.cancel')"
|
:title="$t('buttons.cancel')"
|
||||||
tabindex="3"
|
tabindex="3"
|
||||||
>
|
>
|
||||||
{{ $t("buttons.cancel") }}
|
{{ $t("buttons.cancel") }}
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
id="focus-prompt"
|
id="focus-prompt"
|
||||||
class="button button--flat"
|
class="button button--flat"
|
||||||
@click="copy"
|
@click="copy"
|
||||||
:aria-label="$t('buttons.copy')"
|
:aria-label="$t('buttons.copy')"
|
||||||
:title="$t('buttons.copy')"
|
:title="$t('buttons.copy')"
|
||||||
tabindex="2"
|
tabindex="2"
|
||||||
>
|
>
|
||||||
{{ $t("buttons.copy") }}
|
{{ $t("buttons.copy") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -45,7 +45,7 @@
|
|||||||
:aria-label="$t('buttons.move')"
|
:aria-label="$t('buttons.move')"
|
||||||
:title="$t('buttons.move')"
|
:title="$t('buttons.move')"
|
||||||
tabindex="2"
|
tabindex="2"
|
||||||
>
|
>
|
||||||
{{ $t("buttons.move") }}
|
{{ $t("buttons.move") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -71,11 +71,9 @@ export default {
|
|||||||
"filesInUpload",
|
"filesInUpload",
|
||||||
"filesInUploadCount",
|
"filesInUploadCount",
|
||||||
"uploadSpeed",
|
"uploadSpeed",
|
||||||
"eta"
|
"eta",
|
||||||
]),
|
|
||||||
...mapWritableState(useFileStore, [
|
|
||||||
"reload"
|
|
||||||
]),
|
]),
|
||||||
|
...mapWritableState(useFileStore, ["reload"]),
|
||||||
...mapActions(useUploadStore, ["reset"]),
|
...mapActions(useUploadStore, ["reset"]),
|
||||||
formattedETA() {
|
formattedETA() {
|
||||||
if (!this.eta || this.eta === Infinity) {
|
if (!this.eta || this.eta === Infinity) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user