Skip to content

Commit

Permalink
prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
patorjk committed Jun 22, 2020
1 parent e651d7b commit 98f9818
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/TableHead.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const TableHead = ({
colPos: idx,
};
});

return (
<MuiTableHead
className={classNames({
Expand Down
3 changes: 1 addition & 2 deletions test/MUIDataTableCustomComponents.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ describe('<MUIDataTable /> with custom components', function() {
);
const customFilterList = wrapper.find(CustomFilterList);
assert.lengthOf(customFilterList, 1);
const customChip = customFilterList
.find(CustomChip);
const customChip = customFilterList.find(CustomChip);
assert.lengthOf(customChip, 1);
});
});
2 changes: 1 addition & 1 deletion test/MUIDataTableHead.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('<TableHead />', function() {
it('should render a table head', () => {
const options = {};
const toggleSort = () => {};
console.dir(columns);
console.dir(columns);
const mountWrapper = mount(
<DndProvider backend={HTML5Backend}>
<TableHead
Expand Down

0 comments on commit 98f9818

Please sign in to comment.