diff options
| author | Henry Jameson <me@hjkos.com> | 2019-04-10 21:48:42 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-04-10 21:48:42 +0300 |
| commit | 262760d2586cac48da27cf7eb5389116d4023dfe (patch) | |
| tree | a4c9393df0da43409fcce9b1b41b4611f33cccb6 /src/components/gallery/gallery.vue | |
| parent | 6471bec0d962a13b272c2c55807492c86b859256 (diff) | |
revert unnecessary changes
Diffstat (limited to 'src/components/gallery/gallery.vue')
| -rw-r--r-- | src/components/gallery/gallery.vue | 19 |
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> |
