Skip to content

Commit

Permalink
[PR feedback] wording goodly
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Mar 27, 2024
1 parent 5d42711 commit ed61e7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export type EuiComponentDefaults = {
/**
* Provide a global configuration for EuiTable's `responsiveBreakpoint` prop. Defaults to `'s'`.
*
* Defaults will be inherited all `EuiBasicTable`s and `EuiInMemoryTable`s.
* Defaults will be inherited by all `EuiBasicTable`s and `EuiInMemoryTable`s.
*/
EuiTable?: Pick<EuiTableProps, 'responsiveBreakpoint'>;
};
Expand Down
2 changes: 1 addition & 1 deletion src/components/table/table.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('EuiTable', () => {
expect(container.firstElementChild!.className).toContain('-mobile');
});

it('allows never rendering responsive tables if set to `false`', () => {
it('never renders responsive tables if set to `false`', () => {
window.innerWidth = 320;
const { container } = render(<EuiTable responsiveBreakpoint={false} />);

Expand Down

0 comments on commit ed61e7a

Please sign in to comment.