diff --git a/jslib b/jslib index 8a1bc30fc9..4c083eeb92 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 8a1bc30fc996fa787c981abdc6fc78e961ced4b5 +Subproject commit 4c083eeb92d599bd8b85fb88ec5d435079b79395 diff --git a/src/app/vault/attachments.component.html b/src/app/vault/attachments.component.html index cb4f000862..5e1b7ad74f 100644 --- a/src/app/vault/attachments.component.html +++ b/src/app/vault/attachments.component.html @@ -15,7 +15,8 @@ - {{a.fileName}} + {{a.fileName}} +
{{a.sizeName}} diff --git a/src/app/vault/attachments.component.ts b/src/app/vault/attachments.component.ts index 279b162326..1b086de522 100644 --- a/src/app/vault/attachments.component.ts +++ b/src/app/vault/attachments.component.ts @@ -21,6 +21,6 @@ export class AttachmentsComponent extends BaseAttachmentsComponent { cryptoService: CryptoService, tokenService: TokenService, platformUtilsService: PlatformUtilsService) { super(cipherService, analytics, toasterService, i18nService, cryptoService, tokenService, - platformUtilsService); + platformUtilsService, window); } }