Merge pull request #4185 from sbwalker/dev

fix #4160 - content entered being overidden by original content
This commit is contained in:
Shaun Walker 2024-04-23 14:05:02 -04:00 committed by GitHub
commit 85224c8f0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -174,7 +174,11 @@
_rawhtml = Content;
_originalrawhtml = _rawhtml; // preserve for comparison later
_originalrichhtml = "";
if (Content != _originalrawhtml)
{
_contentchanged = true; // identifies when Content parameter has changed
}
if (!AllowRichText)
{