Skip to content

Commit

Permalink
Fix: Remove min-width from column header cells, to allow full compati…
Browse files Browse the repository at this point in the history
…bility with FixedHeader
  • Loading branch information
Allan Jardine committed Dec 8, 2017
1 parent 37c3e71 commit 6f887a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/dataTables.responsive.js
Expand Up @@ -842,7 +842,8 @@ $.extend( Responsive.prototype, {
} )
.to$()
.clone( false )
.css( 'display', 'table-cell' );
.css( 'display', 'table-cell' )
.css( 'min-width', 0 );

// Body rows - we don't need to take account of DataTables' column
// visibility since we implement our own here (hence the `display` set)
Expand Down

0 comments on commit 6f887a6

Please sign in to comment.