Skip to content

Commit 0fc7d05

Browse files
authored
fix(module:form): fix form overlap (#3633)
close #3607
1 parent 8db4f9b commit 0fc7d05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/form/nz-form-control.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export class NzFormControlComponent extends NzColDirective
146146
[`is-validating`]: this.status === 'validating',
147147
[`has-error`]: this.status === 'error',
148148
[`has-success`]: this.status === 'success',
149-
[`has-feedback`]: this.nzHasFeedback
149+
[`has-feedback`]: this.nzHasFeedback && this.status
150150
};
151151
}
152152

0 commit comments

Comments
 (0)