chore (client): remove "ALT:" from alt text tooltips
This commit is contained in:
parent
a63bf84c02
commit
071d642451
3 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||||
}`
|
}`
|
||||||
"
|
"
|
||||||
|
|
|
@ -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()
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue