Browse Source

Fix unbound image alt attribute

pull/390/head
Billiam 1 month ago
committed by GitHub
parent
commit
23bcd2ede6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      pinry-spa/src/components/Pins.vue

+ 1
- 1
pinry-spa/src/components/Pins.vue View File

@@ -31,7 +31,7 @@
<img :src="item.url"
@load="onPinImageLoaded(item.id)"
@click="openPreview(item)"
alt="item.description"
:alt="item.description"
:style="item.style"
class="pin-preview-image">
</div>


Loading…
Cancel
Save