diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-05-08 15:57:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 15:57:54 +0200 |
commit | bd22370bebeded34fa5f34e5c7feae2f1fa7ec7d (patch) | |
tree | afd99940014108164d7007d9363b59da6a842ab6 /src-vue/src | |
parent | 6fb12489cb07fdb7afa143029ce413d3631c1dbd (diff) | |
download | FlightCore-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/src')
-rw-r--r-- | src-vue/src/views/mods/LocalModsView.vue | 2 |
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" |