Skip to content

Commit

Permalink
fix: replace table striped with bordered
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-aiello-appfolio committed Jan 9, 2024
1 parent 15bcc35 commit a931458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Table/Table.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ describe('<Table />', () => {
assert.equal(props.hover, true);
assert.equal(props.responsive, true);
assert.equal(props.size, 'sm');
assert.equal(props.striped, true);
assert.equal(props.bordered, true);
});
});
2 changes: 1 addition & 1 deletion src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Table.defaultProps = {
hover: true,
responsive: true,
size: 'sm',
striped: true,
bordered: true,
};

export default Table;

0 comments on commit a931458

Please sign in to comment.