diff --git a/src/components/table/table_row_cell.tsx b/src/components/table/table_row_cell.tsx index 274629429ce..7e52261ce94 100644 --- a/src/components/table/table_row_cell.tsx +++ b/src/components/table/table_row_cell.tsx @@ -174,6 +174,7 @@ export const EuiTableRowCell: FunctionComponent = ({ }; if (isResponsive) { + // Mobile view if (mobileOptions?.show === false) { return null; } else { @@ -199,6 +200,7 @@ export const EuiTableRowCell: FunctionComponent = ({ ); } } else { + // Desktop view if (mobileOptions?.only) { return null; } else {