Merge pull request #764 from bitwarden/SendFileSize

added file size to Send view
This commit is contained in:
Addison Beck 2021-03-09 14:56:08 -05:00 committed by GitHub
commit b445bec719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
<ng-container *ngIf="editMode && send.type === sendType.File"> <ng-container *ngIf="editMode && send.type === sendType.File">
<div class="box-content-row" appBoxRow> <div class="box-content-row" appBoxRow>
<label for="file">{{'file' | i18n}}</label> <label for="file">{{'file' | i18n}}</label>
<input id="file" type="text" name="file" [(ngModel)]="send.file.fileName" readonly [disabled]="disableSend"> <div class="row-main">{{send.file.fileName}} ({{send.file.sizeName}})</div>
</div> </div>
</ng-container> </ng-container>
<ng-container *ngIf="send.type === sendType.Text"> <ng-container *ngIf="send.type === sendType.Text">