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:
@@ -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$),
|
||||
)
|
||||
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user