[RAC] - T Grid always show the leading checkboxes #119482
Labels
bug
Fixes for quality problems that affect the customer experience
Team: Actionable Observability - DEPRECATED
For Observability Alerting and SLOs use "Team:obs-ux-management", for AIops "Team:obs-knowledge"
Theme: rac
label obsolete
Summery
T Grid provides the possibility to hide the leading checkBoxes in the table, and it is configurable via a prop
showCheckBoxes
with a boolean value. However, this value is hardcoded withtrue
, which means the checkboxes always appear whatever value is passed.kibana/x-pack/plugins/timelines/public/components/t_grid/standalone/index.tsx
Line 320 in f7d7a34
Hiding leading checkboxes required in this issue, so I tried to fix it with
showCheckboxes: leadingControlColumns[0].showCheckboxes ?? true,
That fulfilled my requirement, but, unfortunately, it made other tests for other components fail.
AC
true
and makeshowCheckBoxes
prop configurable.The text was updated successfully, but these errors were encountered: