diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2021-09-08 21:50:28 -0400 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-13 12:02:02 -0400 |
| commit | 1128cc463c4b16c41ab21c554646a8104ba58826 (patch) | |
| tree | a935830d32b1b86aead1fa1bd48108a11fcc25f4 | |
| parent | 22d8961c5e1418d5037fbdd80a49ff434663d418 (diff) | |
Fix video in media modal not displaying properly
| -rw-r--r-- | src/components/media_modal/media_modal.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/media_modal/media_modal.vue b/src/components/media_modal/media_modal.vue index 0fbdb558..abc1d797 100644 --- a/src/components/media_modal/media_modal.vue +++ b/src/components/media_modal/media_modal.vue @@ -5,6 +5,7 @@ @backdropClicked="hide" > <SwipeClick + v-if="type === 'image'" class="modal-image-container" :direction="swipeDirection" :threshold="swipeThreshold" @@ -23,7 +24,6 @@ :reset-to-min-scale-limit="pinchZoomScaleResetLimit" > <img - v-if="type === 'image'" :class="{ loading }" class="modal-image" :src="currentMedia.url" |
