Commit 43f65113 by Yvon Kerdoncuff

fix incorrect value of autocomplete attribute (off instead of false) to properly…

fix incorrect value of autocomplete attribute (off instead of false) to properly disable form autocompletion
parent 3a500fc1
......@@ -249,7 +249,7 @@ class AdherentAdmin extends AbstractAdmin
],
'required' => true,
'attr' => [
'autocomplete' => false
'autocomplete' => 'off'
]
])
->end()
......@@ -277,7 +277,7 @@ class AdherentAdmin extends AbstractAdmin
],
'required' => true,
'attr' => [
'autocomplete' => false
'autocomplete' => 'off'
]
])
->add('dependentChildren', CollectionType::class, [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment