Skip to content
Snippets Groups Projects
Commit fd842617 authored by Rodrigo Panchiniak Fernandes's avatar Rodrigo Panchiniak Fernandes
Browse files

Replaced double quotes by single quotes.

parent a7f8094f
No related branches found
Tags 10.1.10
No related merge requests found
......@@ -232,11 +232,11 @@ class ProcEntityReferenceWidget extends EntityReferenceAutocompleteWidget {
'onclick' => <<<JS
if (this.checked) {
document.getElementById("encrypt-{$proc_field_name}").click();
document.getElementById('encrypt-{$proc_field_name}').click();
this.value = 1;
}
else {
document.getElementById("decrypt-{$proc_field_name}").click();
document.getElementById('decrypt-{$proc_field_name}').click();
this.value = 0;
}
JS,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment