We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The layout only allows proper Dash components, which makes it cumbersome to add simple text to the page.
It would be helpful if the componentify internal function would allow other simple types like a string, a numeric, a date, a boolean, etc.
It would transform this:
app$layout(list(htmlSpan("My app"), htmlBr(), htmlSpan("By Dean Attali"), htmlBr(), htmlSpan("Version"), htmlSpan(2)))
into this:
app$layout(list("My app", htmlBr(), "By Dean Attali", htmlBr(), "Version", 2))
The text was updated successfully, but these errors were encountered:
See also: plotly/dash#1620
Sorry, something went wrong.
No branches or pull requests
The layout only allows proper Dash components, which makes it cumbersome to add simple text to the page.
It would be helpful if the componentify internal function would allow other simple types like a string, a numeric, a date, a boolean, etc.
It would transform this:
into this:
The text was updated successfully, but these errors were encountered: