Skip to content

Commit

Permalink
fix(module:sf:cascader): fix invalid search when labelProperty or val…
Browse files Browse the repository at this point in the history
…ueProperty is empty (#325)

- close ng-alain/ng-alain#826
  • Loading branch information
cipchk authored Dec 17, 2018
1 parent e8d9ed1 commit 4d4e53f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/form/src/widgets/cascader/cascader.widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { ControlWidget } from '../../widget';
[nzExpandTrigger]="ui.expandTrigger"
[nzMenuClassName]="ui.menuClassName"
[nzMenuStyle]="ui.menuStyle"
[nzLabelProperty]="ui.labelProperty"
[nzValueProperty]="ui.valueProperty"
[nzLabelProperty]="ui.labelProperty || 'label'"
[nzValueProperty]="ui.valueProperty || 'value'"
[nzLoadData]="loadData"
[nzPlaceHolder]="ui.placeholder"
[nzShowArrow]="showArrow"
Expand Down

0 comments on commit 4d4e53f

Please sign in to comment.