1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +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> { ): Observable<void> {
const encryptedCollectionName$ = this.orgKey$(organization).pipe( const encryptedCollectionName$ = this.orgKey$(organization).pipe(
switchMap((orgKey) => 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": { "defaultCollection": {
"message": "Default collection" "message": "Default collection"
}, },
"myItems": {
"message": "My Items"
},
"getHelp": { "getHelp": {
"message": "Get help" "message": "Get help"
}, },