Merge pull request #9026 from MiroslavDionisiev/UEPR-116-allow-embedded-video-fullscreen
Some checks are pending
CI/CD / build-and-test-and-maybe-deploy (push) Waiting to run
Transifex Push / transifex-push (push) Waiting to run

[UEPR-116] allow full screen of video
This commit is contained in:
Miroslav Dionisiev 2024-12-10 11:30:51 +02:00 committed by GitHub
commit 0a94339878
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,6 +31,7 @@ export const YoutubeVideoModal = ({videoId, onClose = () => {}, className}) => {
height="360"
src={`https://www.youtube.com/embed/${videoId}?rel=0&cc_load_policy=1&autoplay=1`}
allow="autoplay"
allowFullScreen
/>
</ReactModal>
);