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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user