fix(settings): apps list html validation

- Replace invalid `width="100%"` attribute
- Add empty required `alt`

Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
This commit is contained in:
Grigorii K. Shartsev 2023-10-21 05:06:44 +02:00
parent 122e799ff5
commit 668e35f155

View file

@ -44,7 +44,7 @@
class="app-icon" />
</svg>
<img v-if="!listView && app.screenshot && screenshotLoaded" :src="app.screenshot" width="100%">
<img v-if="!listView && app.screenshot && screenshotLoaded" :src="app.screenshot" alt="">
</component>
<component :is="dataItemTag"
class="app-name"
@ -210,7 +210,11 @@ export default {
</script>
<style scoped lang="scss">
.app-icon {
filter: var(--background-invert-if-bright);
}
.app-icon {
filter: var(--background-invert-if-bright);
}
.app-image img {
width: 100%;
}
</style>