-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
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
In Widget HTML Template, <script> tag doesn't sync properly #24
Comments
I'll have to look at this, but could this be something the instance does? Does it work when editing in the browser based widget editor? |
I am experiencing the same issue with < and > becoming Example: When editing directly in the web editor in my SN instance the script tags remains untouched and works as expected. |
I've looked in to this, you would need to set system property
|
Great, thanks @arnoudkooi I will try this later today and let you know if it resolves my issue. |
Confirmed setting the property to false fixes the issue. PR submitted for documentation purposes. Feel free to close this issue at your convenience Arnoud 😄 |
Add FAQs section to README and provide Solution to #24
Thanks, good idea to add a faq! |
I have the following line in my HTML template:
<script type="text/ng-template" id="myModal">
When saving from VS Code, the attributes of the script tag are lost and the < and > characters sync to the instance with escape codes:
<script>
and
</script>
PS: I noticed this while working in my PDI which is on the New York release.
The text was updated successfully, but these errors were encountered: