避免 value 正好是数字 0 (#4401)

This commit is contained in:
可乐
2016-12-29 13:42:14 +08:00
committed by 偏右
parent 3deb8ec590
commit 2e4e1fcaef
+1 -1
View File
@@ -58,7 +58,7 @@ class EditableCell extends React.Component {
</div>
:
<div className="editable-row-text">
{value || ' '}
{value.toString() || ' '}
</div>
}
</div>);