Skip to content

Commit

Permalink
fix(module:form): fix form overlap (#3633)
Browse files Browse the repository at this point in the history
close #3607
  • Loading branch information
vthinkxie committed Jun 24, 2019
1 parent 8db4f9b commit 0fc7d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/form/nz-form-control.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export class NzFormControlComponent extends NzColDirective
[`is-validating`]: this.status === 'validating',
[`has-error`]: this.status === 'error',
[`has-success`]: this.status === 'success',
[`has-feedback`]: this.nzHasFeedback
[`has-feedback`]: this.nzHasFeedback && this.status
};
}

Expand Down

0 comments on commit 0fc7d05

Please sign in to comment.