added style for manage media task page

This commit was merged in pull request #684.
This commit is contained in:
victorAnumudu
2024-03-28 17:48:00 +01:00
parent 4c208e8a58
commit c04b909489
8 changed files with 64 additions and 50 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export default function VideoElement({videoId}) {
return (
<video ref={videoRef} className='w-full h-full' controls>
<source src={`https://dev-media.wrenchboard.com/videos/${videoId}`} type='video/mp4'></source>
<source src={`${process.env.REACT_APP_MEDIA_LINK}/videos/${videoId}`} type='video/mp4'></source>
Your browser does not support the video tag.
</video>
)