diff options
author | Zero~Informatique | 2020-02-02 03:11:30 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-02 03:11:30 +0100 |
commit | a7b235d8874fe4ad1d7e7a5ce59510d9f55b857d (patch) | |
tree | 41c139912e853ce0eccf3ea0c04cccfe0f814cb0 | |
parent | be8ec3edaed843f08dac3d2bf2f10f7247ef3d3a (diff) | |
download | ldgallery-a7b235d8874fe4ad1d7e7a5ce59510d9f55b857d.tar.gz |
viewer: fixed the command button's titles (somehow the `:` were removed before the commit)
-rw-r--r-- | viewer/src/components/LdCommand.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/viewer/src/components/LdCommand.vue b/viewer/src/components/LdCommand.vue index 07cb354..8c6ccfc 100644 --- a/viewer/src/components/LdCommand.vue +++ b/viewer/src/components/LdCommand.vue | |||
@@ -19,16 +19,16 @@ | |||
19 | 19 | ||
20 | <template> | 20 | <template> |
21 | <div class="flex command-btns"> | 21 | <div class="flex command-btns"> |
22 | <div class="link" title="$t('title.tags')" @click="$uiStore.toggleFullWidth()"> | 22 | <div class="link" :title="$t('title.tags')" @click="$uiStore.toggleFullWidth()"> |
23 | <fa-icon :icon="commandTagsIcon()" size="lg" /> | 23 | <fa-icon :icon="commandTagsIcon()" size="lg" /> |
24 | </div> | 24 | </div> |
25 | <router-link to="/" :class="{'disabled': isRoot()}" title="$t('title.home')"> | 25 | <router-link to="/" :class="{'disabled': isRoot()}" :title="$t('title.home')"> |
26 | <fa-icon icon="home" size="lg" /> | 26 | <fa-icon icon="home" size="lg" /> |
27 | </router-link> | 27 | </router-link> |
28 | <div class="link" title="$t('title.back')" @click="$router.go(-1)"> | 28 | <div class="link" :title="$t('title.back')" @click="$router.go(-1)"> |
29 | <fa-icon icon="arrow-left" size="lg" /> | 29 | <fa-icon icon="arrow-left" size="lg" /> |
30 | </div> | 30 | </div> |
31 | <router-link :class="{'disabled': isRoot()}" title="$t('title.parent')" :to="parent()"> | 31 | <router-link :class="{'disabled': isRoot()}" :title="$t('title.parent')" :to="parent()"> |
32 | <fa-icon icon="folder" size="xs" /> | 32 | <fa-icon icon="folder" size="xs" /> |
33 | <fa-icon icon="level-up-alt" size="lg" /> | 33 | <fa-icon icon="level-up-alt" size="lg" /> |
34 | </router-link> | 34 | </router-link> |