fix(settings): apps list html validation

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

Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
pull/41035/head
Grigorii K. Shartsev 2 years ago
parent 122e799ff5
commit 668e35f155
  1. 12
      apps/settings/src/components/AppList/AppItem.vue

@ -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>

Loading…
Cancel
Save