1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

[PM-23086] fix My Items collection name (#15366)

* fix My Items collection name

* clean up
This commit is contained in:
Brandon Treston
2025-06-27 11:49:58 -04:00
committed by GitHub
parent 62750a06ec
commit 652f673a3c
2 changed files with 4 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ export class OrganizationUserService {
): Observable<void> {
const encryptedCollectionName$ = this.orgKey$(organization).pipe(
switchMap((orgKey) =>
this.encryptService.encryptString(this.i18nService.t("My Itmes"), orgKey),
this.encryptService.encryptString(this.i18nService.t("myItems"), orgKey),
),
);

View File

@@ -3276,6 +3276,9 @@
"defaultCollection": {
"message": "Default collection"
},
"myItems": {
"message": "My Items"
},
"getHelp": {
"message": "Get help"
},