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 text-overflow: ellipsis condition is no longer applying the correct overflow style to text int he TableRowColumn component
text-overflow: ellipsis
TableRowColumn
Create a Table with a TableRowColumn that has a small width and fill it with a very long string and you'll see that it doesn't overflow correctly
Table
We will need to add overflow: hidden to the TableRowColumn style in https://github.com/callemall/material-ui/blob/master/src/Table/TableRowColumn.js
overflow: hidden
i.e.
root: { ... textOverflow: 'ellipsis', },
root: { ... textOverflow: 'ellipsis', overflow: 'hidden', },
Happy to submit a PR for this minor fix.
The text was updated successfully, but these errors were encountered:
Sadly this bug shipped in 0.16.0. It's not mentioned in the breaking changes for that release, so I guess nobody saw the issue.
Sorry, something went wrong.
+1
Duplicated of #5377 and fixed on #5378.
No branches or pull requests
Problem description
The
text-overflow: ellipsis
condition is no longer applying the correct overflow style to text int heTableRowColumn
componentSteps to reproduce
Create a
Table
with aTableRowColumn
that has a small width and fill it with a very long string and you'll see that it doesn't overflow correctlyVersions
Workaround + Fix
We will need to add
overflow: hidden
to theTableRowColumn
style in https://github.com/callemall/material-ui/blob/master/src/Table/TableRowColumn.jsi.e.
Previous
Proposed
Happy to submit a PR for this minor fix.
The text was updated successfully, but these errors were encountered: