We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[preprocessHtml] TrustedHtml.replace() does not exist
TrustedHtml
.replace()
.innerHtml = {TrustedHtml object}
window.trustedTypes
bootstrap.js
if (typeof window === 'object' && window.trustedTypes) { delete window.trustedTypes; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[preprocessHtml] TrustedHtml.replace() does not exist
Root Cause
TrustedHtml
is not a string and thus does not have.replace()
method.innerHtml = {TrustedHtml object}
should become invalid if string is assignedAd-hoc Workaround
window.trustedTypes
inbootstrap.js
like thisFix is under investigation
The text was updated successfully, but these errors were encountered: