Skip to content

Commit

Permalink
[5.x] Adjust video fit in asset editor (#11414)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Varga <[email protected]>
  • Loading branch information
daun and jasonvarga authored Feb 5, 2025
1 parent 779a92a commit e35a2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/assets/Editor/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<div class="w-full shadow-none" v-else-if="asset.isAudio"><audio :src="asset.url" class="w-full" controls preload="auto"></audio></div>

<!-- Video -->
<div class="w-full shadow-none" v-else-if="asset.isVideo"><video :src="asset.url" class="w-full" controls></video></div>
<video :src="asset.url" controls v-else-if="asset.isVideo"></video>
</div>
</div>

Expand Down

0 comments on commit e35a2d5

Please sign in to comment.