mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 06:37:56 -04:00
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:
parent
122e799ff5
commit
668e35f155
1 changed files with 8 additions and 4 deletions
|
|
@ -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…
Reference in a new issue