You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assume we have an entity, that has a String field. The user saves a value that contains a quote character into the string field, e.g.
hello "Peter"
When trying to load the entity changes for that entity, the frontend produces an error like this and the list view does not work at all for that entity.
VM445:1 Uncaught SyntaxError: Expected ',' or '}' after property value in JSON at position 450 (line 1 column 451)
at JSON.parse (<anonymous>)
Assume we have an entity, that has a String field. The user saves a value that contains a quote character into the string field, e.g.
When trying to load the entity changes for that entity, the frontend produces an error like this and the list view does not work at all for that entity.
This is because of the following:
generator-jhipster-entity-audit/generators/spring-boot-javers/templates/src/main/java/_package_/web/rest/dto/EntityAuditEvent.java.ejs
Lines 148 to 160 in 111e39a
-> The entity propertyValue is not being escaped properly.
The text was updated successfully, but these errors were encountered: