aboutsummaryrefslogtreecommitdiff
path: root/src-vue
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-05-08 15:57:54 +0200
committerGitHub <noreply@github.com>2023-05-08 15:57:54 +0200
commitbd22370bebeded34fa5f34e5c7feae2f1fa7ec7d (patch)
treeafd99940014108164d7007d9363b59da6a842ab6 /src-vue
parent6fb12489cb07fdb7afa143029ce413d3631c1dbd (diff)
downloadFlightCore-bd22370bebeded34fa5f34e5c7feae2f1fa7ec7d.tar.gz
FlightCore-bd22370bebeded34fa5f34e5c7feae2f1fa7ec7d.zip
feat: Show Thunderstore mod string in alt text (#310)
This way it's a bit easier to tell which Thunderstore mod a local mod is from
Diffstat (limited to 'src-vue')
-rw-r--r--src-vue/src/views/mods/LocalModsView.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/views/mods/LocalModsView.vue b/src-vue/src/views/mods/LocalModsView.vue
index 3fb90bdc..ad0e2fa6 100644
--- a/src-vue/src/views/mods/LocalModsView.vue
+++ b/src-vue/src/views/mods/LocalModsView.vue
@@ -24,7 +24,7 @@
<span v-if="mod.version != null">(v{{ mod.version }})</span>
<img
v-if="mod.thunderstore_mod_string != null"
- :title="$t('mods.local.part_of_ts_mod')"
+ :title="$t('mods.local.part_of_ts_mod') + '\n' + mod.thunderstore_mod_string"
src="/src/assets/thunderstore-icon.png"
class="image"
height="16"