Skip to content
Snippets Groups Projects
Forked from ICS Control System Infrastructure / csentry
Source project has a limited visibility.
  • Benjamin Bertrand's avatar
    2db946d2
    Fix validation error when field is disabled · 2db946d2
    Benjamin Bertrand authored
    If a selectfield is disabled, None is returned (not a string).
    To pass wtforms validation, that value shall be part of the choices.
    
    We use None as the value for SelectField that are optional (instead of
    '').
    We were previously converting '' to None when creating a model.
    We now use the coerce function to let the form convert 'None' to None.
    2db946d2
    History
    Fix validation error when field is disabled
    Benjamin Bertrand authored
    If a selectfield is disabled, None is returned (not a string).
    To pass wtforms validation, that value shall be part of the choices.
    
    We use None as the value for SelectField that are optional (instead of
    '').
    We were previously converting '' to None when creating a model.
    We now use the coerce function to let the form convert 'None' to None.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.