This is an automated email from the ASF dual-hosted git repository.

beto pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 90cfa7f  fix: FilterableTable result div width (#16912)
90cfa7f is described below

commit 90cfa7fb222119a67895eec41dd621471a42a3be
Author: Lyndsi Kay Williams <[email protected]>
AuthorDate: Wed Oct 6 15:14:35 2021 -0500

    fix: FilterableTable result div width (#16912)
    
    * FilterableTable result div width is now inherit
    
    * Changed style to css
---
 superset-frontend/src/components/FilterableTable/FilterableTable.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/superset-frontend/src/components/FilterableTable/FilterableTable.tsx 
b/superset-frontend/src/components/FilterableTable/FilterableTable.tsx
index 82f690c..191b404 100644
--- a/superset-frontend/src/components/FilterableTable/FilterableTable.tsx
+++ b/superset-frontend/src/components/FilterableTable/FilterableTable.tsx
@@ -435,7 +435,7 @@ export default class FilterableTable extends PureComponent<
         }}
         className={`grid-cell ${this.rowClassName({ index: rowIndex })}`}
       >
-        <div>{content}</div>
+        <div css={{ width: 'inherit' }}>{content}</div>
       </div>
     );
 

Reply via email to