File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -286,17 +286,15 @@ export const Table: FC<TableProps> = (props) => {
286286 ...rprops
287287 } = props ;
288288
289- const tableClassNames = classnames (
290- className ,
291- 'slds-table slds-table_cell-buffer' ,
292- {
293- 'slds-table_bordered' : bordered ,
294- 'slds-no-row-hover' : noRowHover ,
295- 'slds-table_striped' : striped ,
296- 'slds-table_fixed-layout' : fixedLayout ,
297- 'slds-table_col-bordered' : verticalBorders ,
298- }
299- ) ;
289+ const tableClassNames = classnames ( className , 'slds-table' , {
290+ 'slds-table_bordered' : bordered ,
291+ 'slds-no-row-hover' : noRowHover ,
292+ 'slds-table_striped' : striped ,
293+ 'slds-table_fixed-layout' : fixedLayout ,
294+ 'slds-table_resizable-cols' : sortable ,
295+ 'slds-table_cell-buffer' : ! sortable ,
296+ 'slds-table_col-bordered' : verticalBorders ,
297+ } ) ;
300298
301299 const style : CSSProperties = { ...style_ } ;
302300 if ( autoWidth ) {
You can’t perform that action at this time.
0 commit comments