You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm pretty late to the ball here but I guess this could help the people in the future with the same problem. Instead of creating a PR to fix this as the repo seems dead, I'll just post the solution I came up with.
Debugged trough the compiled and unreadable React document which was a bitch, took about 1.5 hours. Finally found out that if the input type does not have any description, it will not render (which mine didn't) as seen here. Just removing this filtering will render the types (at least for me). This can be solved by, in the generated HTML document, replace this.props.args.filter(function(e){return e.description}) with just this.props.args
TL;DR; Replace the one occurrence of this.props.args.filter(function(e){return e.description}) with this.props.args (just search and replace)
Any reason as to why input types are not documented ?
The text was updated successfully, but these errors were encountered: