add playsinline attribute

This commit is contained in:
Kieran 2023-07-04 19:06:18 +01:00
parent cf19bb2f1e
commit b89c8db656
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -60,7 +60,7 @@ export function LiveVideoPlayer(
<video ref={video} {...{
...props,
stream: undefined
}} src={src} controls={status === VideoStatus.Online} />
}} src={src} playsInline={true} controls={status === VideoStatus.Online} />
</>
);
}