@fy-/fws-vue 2.0.67 → 2.0.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -370,10 +370,10 @@ onUnmounted(() => {
370
370
  images[i + j - 2],
371
371
  )}`"
372
372
  @click="$eventBus.emit(`${id}GalleryImage`, i + j - 2)"
373
- :likes="modelValueSrc.likes"
374
- :show-likes="modelValueSrc.showLikes"
375
- :isAuthor="modelValueSrc.isAuthor"
376
- :user-uuid="modelValueSrc.userUUID"
373
+ :likes="getThumbnailUrl(images[i + j - 2]).likes"
374
+ :show-likes="getThumbnailUrl(images[i + j - 2]).showLikes"
375
+ :isAuthor="getThumbnailUrl(images[i + j - 2]).isAuthor"
376
+ :user-uuid="getThumbnailUrl(images[i + j - 2]).userUUID"
377
377
  />
378
378
  </div>
379
379
  </template>
@@ -397,10 +397,10 @@ onUnmounted(() => {
397
397
  images[i - 1],
398
398
  )}`"
399
399
  @click="$eventBus.emit(`${id}GalleryImage`, i - 1)"
400
- :likes="modelValueSrc.likes"
401
- :show-likes="modelValueSrc.showLikes"
402
- :isAuthor="modelValueSrc.isAuthor"
403
- :user-uuid="modelValueSrc.userUUID"
400
+ :likes="getThumbnailUrl(images[i - 1]).likes"
401
+ :show-likes="getThumbnailUrl(images[i - 1]).showLikes"
402
+ :isAuthor="getThumbnailUrl(images[i - 1]).isAuthor"
403
+ :user-uuid="getThumbnailUrl(images[i - 1]).userUUID"
404
404
  />
405
405
  </div>
406
406
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.0.67",
3
+ "version": "2.0.68",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {