fulcro

Book: http://book.fulcrologic.com, Community Resources: https://fulcro-community.github.io/, RAD book at http://book.fulcrologic.com/RAD.html
exit2 2020-10-15T13:12:06.303100Z

Sorry for all the questions, but I can’t seem to get spec validators to work w/ my form fields where the values are things like :city :state etc.. If I make a like:

(s/def ::city (s/and string? #(not (empty? %))))
Which as “fully-qualified” keyword ends up resolving to something like:
app.ui.listing.components.space-form/city
It appears as if the validator (fs/get-spec-validity form field) isn’t picking up on them for some reason. Any ideas?