We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original code at line 64, 65:
<td *ngIf="uploader.isHTML5" nowrap>{{ item?.file?.size/1024/1024 | number:'.2' }} MB</td> <td *ngIf="uploader.isHTML5">
I added options. can work:
<td *ngIf="uploader.options.isHTML5" nowrap>{{ item?.file?.size/1024/1024 | number:'.2' }} MB</td> <td *ngIf="uploader.options.isHTML5">
btw because at line 64, 65 have *ngIf, so I think there are add *ngIf="uploader.options.isHTML5" at line 55, 56 as well.
The text was updated successfully, but these errors were encountered:
Yes, it's failty. There's a pull request #997 to fix this. I hope the contributors can process them soon.
Sorry, something went wrong.
No branches or pull requests
Original code at line 64, 65:
I added options. can work:
btw because at line 64, 65 have *ngIf,
so I think there are add *ngIf="uploader.options.isHTML5" at line 55, 56 as well.
The text was updated successfully, but these errors were encountered: