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
The script uses the command eval in line 1242. As far as I can see, this command is useless, as there are no other variables that require this function.
However, usage of the eval command collides with Content-Security-Policies. Those usually deny this command and will block of the data insertation. Allowing this command will allow it everywhere and contradicts the purpose of CSP.
Minor changes in the following PR will remove this command and allows it to run successfully in a CSP controlled environment.
The text was updated successfully, but these errors were encountered:
JamesCullum
added a commit
to JamesCullum/json-forms
that referenced
this issue
Mar 13, 2018
The script uses the command
eval
in line 1242. As far as I can see, this command is useless, as there are no other variables that require this function.However, usage of the
eval
command collides with Content-Security-Policies. Those usually deny this command and will block of the data insertation. Allowing this command will allow it everywhere and contradicts the purpose of CSP.Minor changes in the following PR will remove this command and allows it to run successfully in a CSP controlled environment.
The text was updated successfully, but these errors were encountered: