ctreffe / alfred

Alfred - A library for rapid experiment development
MIT License
10 stars 1 forks source link

EmailEntry seems to be always required #144

Closed mate-code closed 2 years ago

mate-code commented 2 years ago

Even when I specifically set force_input=False, the field is required.

So when I render:

import alfred3 as al

exp = al.Experiment()

exp += al.Page(name="email")
exp.email += al.EmailEntry(name="email", leftlab="Email", force_input=False)

exp += al.Page(name="next_page")

and click on "Next" without filling out the email field, I get a validation message:

image