fix: FilterableTable result div width (#16912)

* FilterableTable result div width is now inherit

* Changed style to css
This commit is contained in:
Lyndsi Kay Williams 2021-10-06 15:14:35 -05:00 committed by GitHub
parent 40861b3db3
commit 90cfa7fb22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ export default class FilterableTable extends PureComponent<
}} }}
className={`grid-cell ${this.rowClassName({ index: rowIndex })}`} className={`grid-cell ${this.rowClassName({ index: rowIndex })}`}
> >
<div>{content}</div> <div css={{ width: 'inherit' }}>{content}</div>
</div> </div>
); );