Browse Source

Fix colspan (apparently it’s colSpan in react)

Thomas Dy 10 years ago
parent
commit
c216dc7365
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/ui/RecordList.jsx

+ 1 - 1
lib/ui/RecordList.jsx

@@ -176,7 +176,7 @@ var RecordList = React.createClass({
       body = (
       body = (
         <tbody>
         <tbody>
           <tr>
           <tr>
-            <td colspan="5">Loading...</td>
+            <td colSpan="5">Loading...</td>
           </tr>
           </tr>
         </tbody>
         </tbody>
       );
       );