1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

update send list items container

This commit is contained in:
jaasen-livefront
2024-07-18 16:54:22 -07:00
parent b33b82f6be
commit a18d509409
4 changed files with 114 additions and 34 deletions

View File

@@ -51,7 +51,7 @@ export class SendV2Component implements OnInit, OnDestroy {
this.sendService.sendViews$
.pipe(
mergeMap(async (sends) => {
this.sends = sends;
this.sends = sends.sort((a, b) => a.name.localeCompare(b.name));
}),
takeUntil(this.destroy$),
)

View File

@@ -1368,7 +1368,7 @@
},
"exportPasswordDescription": {
"message": "This password will be used to export and import this file"
},
},
"accountRestrictedOptionDescription": {
"message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
},
@@ -1937,6 +1937,30 @@
"copyLink": {
"message": "Copy link"
},
"copySendTitle": {
"message": "Copy link - $NAME$",
"placeholders": {
"name": {
"content": "$1"
}
}
},
"deleteSend": {
"message": "Delete - $NAME$",
"placeholders": {
"name": {
"content": "$1"
}
}
},
"editSendTitle": {
"message": "Edit - $NAME$",
"placeholders": {
"name": {
"content": "$1"
}
}
},
"disabled": {
"message": "Disabled"
},