Skip to content

Commit

Permalink
fix(table): fix long strings in table cells were incorrectly truncated (
Browse files Browse the repository at this point in the history
#1647)

* fix(table): fix long strings in table cells were incorrectly truncated

* fix(table): fix Unexpected duplicate "display"
  • Loading branch information
simonguo committed May 8, 2021
1 parent e19cd47 commit 926111e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Table/styles/common.less
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,12 @@
border-style: solid;
border-width: 0;
border-color: @table-border-color;
display: block;
overflow: hidden;
position: absolute;
white-space: normal;
background: @table-body-background;
display: table;
table-layout: fixed;

&.first {
border-left-width: 0;
Expand Down

1 comment on commit 926111e

@vercel
Copy link

@vercel vercel bot commented on 926111e May 8, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

rsuite – ./docs

rsuite.vercel.app
rsuitejs.com
rsuite-git-v4-rsuite.vercel.app
rsuite-rsuite.vercel.app

Please sign in to comment.