aboutsummaryrefslogtreecommitdiff
path: root/src/components/gallery/gallery.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/gallery/gallery.vue')
-rw-r--r--src/components/gallery/gallery.vue19
1 files changed, 5 insertions, 14 deletions
diff --git a/src/components/gallery/gallery.vue b/src/components/gallery/gallery.vue
index e8e441db..ea525c95 100644
--- a/src/components/gallery/gallery.vue
+++ b/src/components/gallery/gallery.vue
@@ -1,22 +1,13 @@
<template>
- <div
- ref="galleryContainer"
- style="width: 100%;"
- >
- <div
- v-for="row in rows"
- :key="row"
- class="gallery-row"
- :style="rowHeight(row.length)"
- :class="{ 'contain-fit': useContainFit, 'cover-fit': !useContainFit }"
- >
+ <div ref="galleryContainer" style="width: 100%;">
+ <div class="gallery-row" v-for="row in rows" :style="rowHeight(row.length)" :class="{ 'contain-fit': useContainFit, 'cover-fit': !useContainFit }">
<attachment
v-for="attachment in row"
- :key="attachment.id"
- :set-media="setMedia"
+ :setMedia="setMedia"
:nsfw="nsfw"
:attachment="attachment"
- :allow-play="false"
+ :allowPlay="false"
+ :key="attachment.id"
/>
</div>
</div>