You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With a higher header cell, the sorting icon will still be vertically aligned which we'd like to change in this case. Right now we have to override EUI classes which we'd like to avoid.
The text was updated successfully, but these errors were encountered:
👋 Hey there. This issue hasn't had any activity for 180 days. We'll automatically close it if that trend continues for another week. If you feel this issue is still valid and needs attention please let us know with a comment.
Once #6609 lands, you'll be able to accomplish this with the displayHeaderCellProps property in columns:
// Example css.yourClass{vertical-align: top;// or whatever}// Example columnconstcolumns=[{id: 'someColumn',display: <>Column <EuiIcontype="dot"/></>,displayHeaderCellProps: {className: 'yourClass'},// etc.},];// Example data grid<EuiDataGridcolumns={columns}// etc./>
This relates to this Kibana issue: elastic/kibana#110053
With a higher header cell, the sorting icon will still be vertically aligned which we'd like to change in this case. Right now we have to override EUI classes which we'd like to avoid.
The text was updated successfully, but these errors were encountered: