From 0fc7d052121ff946ee8c92c73bf31d4965d5c36f Mon Sep 17 00:00:00 2001 From: vthinkxie Date: Mon, 24 Jun 2019 15:58:27 +0800 Subject: [PATCH] fix(module:form): fix form overlap (#3633) close #3607 --- components/form/nz-form-control.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/form/nz-form-control.component.ts b/components/form/nz-form-control.component.ts index bbf3f3e5ca..d4c98f2fb6 100644 --- a/components/form/nz-form-control.component.ts +++ b/components/form/nz-form-control.component.ts @@ -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 }; }