1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

send improvements and bug fixes (#757)

* send improvements and bug fixes

* update jslib

* update jslib

* update jslib

* update jslib ref

* Hide match uri overflow (#758)

match descriptions are overflowing in german and causing the uri delete
button to overflow off of the cipher view modal

* update jslib

* jslib ref

* update jslib

Co-authored-by: Matt Gibson <mgibson@bitwarden.com>
This commit is contained in:
Kyle Spearrin
2021-01-04 10:57:53 -05:00
committed by GitHub
parent 577cab24c4
commit c43012a5f2
6 changed files with 53 additions and 9 deletions

View File

@@ -143,7 +143,7 @@ export class SendComponent implements OnInit {
}
try {
this.actionPromise = this.apiService.putSendRemovePassword(s.id);
this.actionPromise = this.sendService.removePasswordWithServer(s.id);
await this.actionPromise;
this.platformUtilsService.showToast('success', null, this.i18nService.t('removedPassword'));
await this.load();
@@ -164,7 +164,7 @@ export class SendComponent implements OnInit {
}
try {
this.actionPromise = this.apiService.deleteSend(s.id);
this.actionPromise = this.sendService.deleteWithServer(s.id);
await this.actionPromise;
this.platformUtilsService.showToast('success', null, this.i18nService.t('deletedSend'));
await this.load();