Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 5b3b21a

Browse files
author
Kenny Tran
committed
Merge pull request #38 from mesosphere/bug/colspan-to-colSpan
colspan to colSpan
2 parents 5fe22bb + af18b71 commit 5b3b21a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Table/Table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export default class Table extends React.Component {
107107
if (data.length === 0) {
108108
return (
109109
<tr>
110-
<td colspan={columns.length}>
110+
<td colSpan={columns.length}>
111111
No data
112112
</td>
113113
</tr>

0 commit comments

Comments
 (0)