Patch Changes
-
d38e980: Fix: edits made in the Visual Editor no longer revert to the initially rendered content.
The
props.contentupdate hook is compiled to an Angulareffect()that tracks every
signal read in its body instead of the declared dependency list. Any unrelated context
update therefore re-ran the hook and re-merged the original page-loadprops.content
over content received from the editor. Guard the merge with aprevContentcheck, the
same pattern already used by the neighbouringprops.dataandprops.localehooks.