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
dash 2.7.0 dash-core-components 2.0.0 dash-html-components 2.0.0 dash-table 5.0.0 dash-mantine-components 0.11.0a0
Describe the bug
When passing components in dash component properties other than children, an error is thrown if a list of components is passed.
children
from dash import Dash from dash_iconify import DashIconify import dash_mantine_components as dmc app = Dash(__name__) app.layout = dmc.Divider(label=["GitHub", DashIconify(icon="fa:github")]) if __name__ == "__main__": app.run_server(debug=True)
Error:
This behaviour is observed even if a single component is passed in the list:
app.layout = dmc.Divider(label=[DashIconify(icon="fa:github")])
Expected behavior
No error should be displayed even when multiple components are passed.
Screenshots
NA
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
When passing components in dash component properties other than
children
, an error is thrown if a list of components is passed.Error:

This behaviour is observed even if a single component is passed in the list:
Expected behavior
No error should be displayed even when multiple components are passed.
Screenshots
NA
The text was updated successfully, but these errors were encountered: