Browse Source

fix: empty string should be treat as inexisting, close: #3613

pull/3632/head
Benjy Cui 8 years ago
parent
commit
d57827f87c
  1. 13
      components/form/FormItem.tsx

13
components/form/FormItem.tsx

@ -147,15 +147,18 @@ export default class FormItem extends React.Component<FormItemProps, any> {
getValidateStatus() {
const { isFieldValidating, getFieldError, getFieldValue } = this.context.form;
const field = this.getId();
if (!field) {
const fieldId = this.getId();
if (!fieldId) {
return '';
}
if (isFieldValidating(field)) {
if (isFieldValidating(fieldId)) {
return 'validating';
} else if (!!getFieldError(field)) {
}
if (!!getFieldError(fieldId)) {
return 'error';
} else if (getFieldValue(field) !== undefined && getFieldValue(field) !== null) {
}
const fieldValue = getFieldValue(fieldId);
if (fieldValue !== undefined && fieldValue !== null && fieldValue !== '') {
return 'success';
}
return '';

Loading…
Cancel
Save