fix: don't show filename as alt text

This commit is contained in:
ShittyKopper 2023-11-27 23:55:43 +03:00
parent 2f5c51c1ca
commit 62a5793e71
4 changed files with 8 additions and 8 deletions

View file

@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<audio <audio
ref="audioEl" ref="audioEl"
:src="media.url" :src="media.url"
:title="media.name" :title="media.comment ?? undefined"
controls controls
preload="metadata" preload="metadata"
/> />

View file

@ -8,10 +8,10 @@ SPDX-License-Identifier: AGPL-3.0-only
<component <component
:is="disableImageLink ? 'div' : 'a'" :is="disableImageLink ? 'div' : 'a'"
v-bind="disableImageLink ? { v-bind="disableImageLink ? {
title: image.name, title: image.comment,
class: $style.imageContainer, class: $style.imageContainer,
} : { } : {
title: image.name, title: image.comment,
class: $style.imageContainer, class: $style.imageContainer,
href: image.url, href: image.url,
style: 'cursor: zoom-in;' style: 'cursor: zoom-in;'
@ -22,8 +22,8 @@ SPDX-License-Identifier: AGPL-3.0-only
:src="(defaultStore.state.dataSaver.media && hide) ? null : url" :src="(defaultStore.state.dataSaver.media && hide) ? null : url"
:forceBlurhash="hide" :forceBlurhash="hide"
:cover="hide || cover" :cover="hide || cover"
:alt="image.comment || image.name" :alt="image.comment"
:title="image.comment || image.name" :title="image.comment"
:width="image.properties.width" :width="image.properties.width"
:height="image.properties.height" :height="image.properties.height"
:style="hide ? 'filter: brightness(0.7);' : null" :style="hide ? 'filter: brightness(0.7);' : null"

View file

@ -156,8 +156,8 @@ onMounted(() => {
[itemData.w, itemData.h] = [itemData.h, itemData.w]; [itemData.w, itemData.h] = [itemData.h, itemData.w];
} }
itemData.msrc = file.thumbnailUrl; itemData.msrc = file.thumbnailUrl;
itemData.alt = file.comment ?? file.name; itemData.alt = file.comment ?? undefined;
itemData.comment = file.comment ?? file.name; itemData.comment = file.comment;
itemData.thumbCropped = true; itemData.thumbCropped = true;
}); });

View file

@ -17,7 +17,7 @@ SPDX-License-Identifier: AGPL-3.0-only
ref="videoEl" ref="videoEl"
:class="$style.video" :class="$style.video"
:poster="video.thumbnailUrl" :poster="video.thumbnailUrl"
:title="video.comment" :title="video.comment ?? undefined"
:alt="video.comment" :alt="video.comment"
preload="none" preload="none"
controls controls