obiba / amber-studio

Content management app for Amber
MIT License
1 stars 1 forks source link

avoid kebab case names when using validation #6

Open meek0 opened 1 year ago

meek0 commented 1 year ago

given form name a-test the resulting validation function will be $('a-test.continue') !== true this will cause a type reference error and break the form for amber-visit

solution: form name should be validated such that it will work when referencing an object properties (e.g. name.something, where something is a property of name)

ymarcon commented 1 year ago

Is it fixed?