How to add a conditional field in Strapi?
I want to have a conditional field, which will only appear if the boolean field is true
For example;
Dog content type has a Boolean field (asking if the dog has a beard), if it does then It asks for the color of it.
viewColorField = (beardStatus == TRUE)? TRUE : FALSE;
Is it possible in Strapi admin area or should I solve it frontend?
I am using Strapi v3.0.0-beta.
Thanks for your answers in advance.