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
Before you submit:
Is your feature request related to a problem? Please describe. At the moment, if the component is used in any of the following ways:
width
height
fluid={false}
the component still takes two render passes to fully render, when it can be completed in one.
Describe the solution you'd like Check whether either of the following are true and eagerly render if true:
width != null && height != null
fluid === false
The text was updated successfully, but these errors were encountered:
This will be fixed in the next major version, v8.
Sorry, something went wrong.
No branches or pull requests
Before you submit:
Is your feature request related to a problem? Please describe.
At the moment, if the component is used in any of the following ways:
width
andheight
setfluid={false}
the component still takes two render passes to fully render, when it can be completed in one.
Describe the solution you'd like
Check whether either of the following are true and eagerly render if true:
width != null && height != null
fluid === false
The text was updated successfully, but these errors were encountered: