Skip to content

Commit

Permalink
fix(module:form): fix form overlap (NG-ZORRO#3633)
Browse files Browse the repository at this point in the history
  • Loading branch information
vthinkxie authored and Ricbet committed Apr 9, 2020
1 parent 0befbdf commit ff46445
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 ff46445

Please sign in to comment.