convert Quill's empty content to empty string
This commit is contained in:
parent
39dff1ea7c
commit
bc978a91e3
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user