mirror of
https://github.com/bitwarden/browser
synced 2026-01-11 04:53:49 +00:00
* [PM-12389] Cleanup attachment dialog UI bugs * [PM-12389] Add formReady event to CipherForm * [PM-12389] Use ngOnChanges for CipherView component initialization * [PM-12389] Cleanup web specific services and components * [PM-12389] Introduce combined Vault Item Dialog component * [PM-12389] Use the new VaultItemDialog in the Individual Vault * [PM-12389] Deprecate the AddEditV2 and View dialogs in Web * [PM-12389] Fix failing test * [PM-12389] Fix broken imports after move * [PM-12389] Remove messages.json addition that is taken care of in another PR
20 lines
606 B
HTML
20 lines
606 B
HTML
<bit-dialog dialogSize="default" background="alt">
|
|
<span bitDialogTitle>
|
|
{{ "attachments" | i18n }}
|
|
</span>
|
|
<ng-container bitDialogContent>
|
|
<app-cipher-attachments
|
|
*ngIf="cipherId"
|
|
[cipherId]="cipherId"
|
|
[submitBtn]="submitBtn"
|
|
(onUploadSuccess)="uploadSuccessful()"
|
|
(onRemoveSuccess)="removalSuccessful()"
|
|
></app-cipher-attachments>
|
|
</ng-container>
|
|
<ng-container bitDialogFooter>
|
|
<button bitButton type="submit" buttonType="primary" [attr.form]="attachmentFormId" #submitBtn>
|
|
{{ "upload" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-dialog>
|