FIX: also track textContent mutations (#14607)

Tracking innerHTML was not enough to catch every mutations.
This commit is contained in:
Joffrey JAFFEUX 2021-10-14 12:14:48 +02:00 committed by GitHub
parent 7f3468e7d5
commit d76d418e5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -913,6 +913,7 @@ export default Component.extend(TextareaTextManipulation, {
childList: true,
subtree: true,
attributes: false,
characterData: true,
});
return observer;