Merge pull request #4140 from sbwalker/dev
convert Quill's empty content to empty string
This commit is contained in:
@ -248,6 +248,11 @@
|
||||
|
||||
if (richhtml != _originalrichhtml && !string.IsNullOrEmpty(richhtml))
|
||||
{
|
||||
// convert Quill's empty content to empty string
|
||||
if (richhtml == "<p><br></p>")
|
||||
{
|
||||
richhtml = string.Empty;
|
||||
}
|
||||
return richhtml;
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user