Skip to content

Commit

Permalink
fix(module:upload): fix ngModel was changed to nzPercent in nz-progre…
Browse files Browse the repository at this point in the history
…ss (#1320)

close #1209
  • Loading branch information
cipchk authored and vthinkxie committed Apr 13, 2018
1 parent de55288 commit 9b7336e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/upload/nz-upload-list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import { ShowUploadListInterface, UploadFile, UploadListType } from './interface
<i *ngIf="icons.showRemoveIcon" (click)="handleRemove(file, $event)" class="anticon anticon-cross" title="{{ locale.removeFile }}"></i>
</ng-template>
<div *ngIf="file.status === 'uploading'" class="ant-upload-list-item-progress">
<nz-progress [ngModel]="file.percent" [nzShowInfo]="false" [nzStrokeWidth]="2" ngDefaultControl></nz-progress>
<nz-progress [nzPercent]="file.percent" [nzShowInfo]="false" [nzStrokeWidth]="2"></nz-progress>
</div>
</div>
`,
Expand Down

0 comments on commit 9b7336e

Please sign in to comment.