Hi Nathan,
Yes, this is a known issue when using the camera widget in Mendix with Microsoft Edge, especially in version 10.18.6 and some recent Edge browser updates.
This issue happens because:
Try this solution It will resolve your issue :-
Disable Picture-in-Picture for Camera Widget
You can fix this by disabling PiP for the video element using JavaScript. Add this small JavaScript snippet to your page using an HTML/JS widget:
setTimeout(() =>
{const video = document.querySelector("video");
if (video) {video.disablePictureInPicture = true;
video.removeAttribute("controls");
}
}, 1000);
This will:
Also Make sure your custom camera widget is updated to latest version. When this issue occur to me I tried to open it in chrome browser only . it works perfectly in chrome.