Merge pull request #4127 from sbwalker/dev

fix issue where active tab not set correctly when rich text editor disabled
This commit is contained in:
Shaun Walker
2024-04-11 09:16:57 -04:00
committed by GitHub

View File

@ -157,6 +157,11 @@
_rawhtml = Content;
_originalrawhtml = _rawhtml; // preserve for comparison later
_originalrichhtml = "";
if (!AllowRichText)
{
_activetab = "Raw";
}
}
protected override async Task OnAfterRenderAsync(bool firstRender)