Skip to content

Commit

Permalink
fix(form): fix losing for (#1144)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk authored Feb 26, 2021
1 parent c4cfd44 commit e0ffa64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/form/src/widgets/select/select.widget.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<sf-item-wrap [id]="id" [schema]="schema" [ui]="ui" [showError]="showError" [error]="error" [showTitle]="schema.title">
<nz-select
[nzId]="id"
[nzDisabled]="disabled"
[(ngModel)]="_value"
(ngModelChange)="change($event)"
Expand Down
1 change: 1 addition & 0 deletions packages/form/src/widgets/time/time.widget.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<sf-item-wrap [id]="id" [schema]="schema" [ui]="ui" [showError]="showError" [error]="error" [showTitle]="schema.title">
<nz-time-picker
[nzId]="id"
[(ngModel)]="displayValue"
(ngModelChange)="_change($event)"
[nzDisabled]="disabled"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<sf-item-wrap [id]="id" [schema]="schema" [ui]="ui" [showError]="showError" [error]="error" [showTitle]="schema.title">
<nz-tree-select
[nzId]="id"
[nzAllowClear]="i.allowClear"
[nzPlaceHolder]="ui.placeholder!"
[nzDropdownStyle]="ui.dropdownStyle!"
Expand Down

0 comments on commit e0ffa64

Please sign in to comment.