chore (client): remove "ALT:" from alt text tooltips

This commit is contained in:
naskya 2024-08-05 08:45:10 +09:00
parent a63bf84c02
commit 071d642451
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@
<i <i
v-if="alt && showAltIndicator" v-if="alt && showAltIndicator"
v-tooltip.noLabel=" v-tooltip.noLabel="
`${i18n.ts.alt}: ${ `${
alt.length > 200 ? alt.trim().slice(0, 200) + '...' : alt.trim() alt.length > 200 ? alt.trim().slice(0, 200) + '...' : alt.trim()
}` }`
" "

View file

@ -64,7 +64,7 @@
<button <button
v-if="media.comment" v-if="media.comment"
v-tooltip.noLabel=" v-tooltip.noLabel="
`${i18n.ts.alt}: ${ `${
media.comment.length > 200 media.comment.length > 200
? media.comment.trim().slice(0, 200) + '...' ? media.comment.trim().slice(0, 200) + '...'
: media.comment.trim() : media.comment.trim()

View file

@ -55,7 +55,7 @@
<button <button
v-if="media.comment" v-if="media.comment"
v-tooltip.noLabel=" v-tooltip.noLabel="
`${i18n.ts.alt}: ${ `${
media.comment.length > 200 media.comment.length > 200
? media.comment.trim().slice(0, 200) + '...' ? media.comment.trim().slice(0, 200) + '...'
: media.comment.trim() : media.comment.trim()