-
-
Notifications
You must be signed in to change notification settings - Fork 19
Description
Description:
When using in a Blazor Server app (tested on .NET 9), clicking the video toolbar button unexpectedly captures a screenshot of the current page instead of opening a dialog to enter an embed URL (e.g., YouTube video).
Expected Behavior:
Clicking the video icon should open a prompt/input to enter a valid embed URL (like a YouTube or Vimeo link), and insert a proper <iframe> into the editor content.
Actual Behavior:
Clicking the video icon triggers the screenshot tool and inserts an image of the current page instead of a video iframe.
Steps to Reproduce:
Use with no custom toolbar or EditorOptions.
Click the video icon in the editor toolbar.
A screenshot is taken and inserted into the editor.
Environment:
Blazor Server (.NET 9 Preview)
MudBlazor v8.9
MudExRichTextEditor (latest from GitHub, not NuGet)
Browser: Chrome / Edge
Implementation:
<MudExRichTextEdit @bind-Value="article.Content" @ref="@Editor" Height="444" Class="m-2" Placeholder="Start Typing" For="@(() => article.Content)" Required="true"> </MudExRichTextEdit>
Appreciate prompt support @fgilde @americanslon @nameofSEOKWONHONG