1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-29 04:07:39 +02:00

added file size to Send view

This commit is contained in:
addison 2021-03-09 14:30:30 -05:00
parent 9310f7d202
commit 9aaa9a0fdb

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">