Skip to content
This repository was archived by the owner on Nov 14, 2020. It is now read-only.

Commit b1ccb1c

Browse files
committed
fix missed merged
1 parent 3a4f45c commit b1ccb1c

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/components/Tabs.js

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -95,36 +95,17 @@ class SimpleTabs extends React.Component {
9595
render() {
9696
const { classes } = this.props;
9797
const { value } = this.state;
98-
<<<<<<< HEAD
9998
const jobColumns = [
10099
"Name",
101100
"Description",
102101
"Created At"
103102
];
104103
const datasetColumns = ["URN", "Created At"];
105-
=======
106-
const jobColumns = ["Name", "Description", "Created At"];
107-
const datasetColumns = ["Name", "urn", "Created At"];
108-
>>>>>>> 0f982bb52cc28ec5567c80ddf07d24a01bb6f0f0
109104

110105
const options = {
111106
filter: true,
112107
filterType: 'dropdown',
113-
<<<<<<< HEAD
114108
onRowClick: this.handleJobRowClick
115-
=======
116-
expandableRows: true,
117-
renderExpandableRow: (rowData, rowMeta) => {
118-
const colSpan = rowData.length + 1;
119-
return (
120-
<TableRow>
121-
<TableCell colSpan={colSpan}>
122-
Custom expandable row option. Data: {JSON.stringify(rowData)}
123-
</TableCell>
124-
</TableRow>
125-
);
126-
}
127-
>>>>>>> 0f982bb52cc28ec5567c80ddf07d24a01bb6f0f0
128109
};
129110

130111
return (

0 commit comments

Comments
 (0)