Skip to content

Commit

Permalink
fix row className
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Sep 13, 2017
1 parent aa363ac commit 8d6d469
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "rc-table",
"version": "5.6.8",
"version": "5.6.9",
"description": "table ui component for react",
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion src/TableRow.jsx
Expand Up @@ -199,7 +199,7 @@ export default class TableRow extends React.Component {
}

const rowClassName =
`${prefixCls} ${className} ${prefixCls}-level-${indent}}`.trim();
`${prefixCls} ${className} ${prefixCls}-level-${indent}`.trim();

return (
<tr
Expand Down

0 comments on commit 8d6d469

Please sign in to comment.