💄 fix missing semicolon

This commit is contained in:
afc163 2019-03-08 16:57:39 +08:00
parent 194dedd013
commit 8f8471fa5d
No known key found for this signature in database
GPG Key ID: 738F973FCE5C6B48

View File

@ -338,7 +338,7 @@ export default class FormItem extends React.Component<FormItemProps, any> {
const mergedLabelCol: ColProps =
('labelCol' in this.props ? labelCol : contextLabelCol) || {};
const labelClsBasic = `${prefixCls}-item-label`
const labelClsBasic = `${prefixCls}-item-label`;
const labelColClassName = classNames(labelClsBasic, labelAlign === 'left' && `${labelClsBasic}-left`, mergedLabelCol.className);
const labelClassName = classNames({
[`${prefixCls}-item-required`]: required,