mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
Modifie la valeur par défault du hidden input à "" si aucune value
Permet la compatibilité sans JS car sinon il y avait None dans le champs comme on ne lancait pas la fonction de reset
This commit is contained in:
parent
5414dd34aa
commit
25ddaa704f
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ def hidden_tag( f_bound, f_name ):
|
|||
'id': hidden_id(f_name),
|
||||
'name': f_name,
|
||||
'type': 'hidden',
|
||||
'value': f_bound.value()
|
||||
'value': f_bound.value() or ""
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue