mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-22 16:29:09 +01:00
fix: replace old strings with invite/edit member, refs PM-1210 (#9313)
This commit is contained in:
parent
4b3e63f7b7
commit
db3d66dae1
@ -6,7 +6,7 @@
|
|||||||
></bit-search>
|
></bit-search>
|
||||||
<button type="button" bitButton buttonType="primary" (click)="invite()">
|
<button type="button" bitButton buttonType="primary" (click)="invite()">
|
||||||
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i>
|
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i>
|
||||||
{{ "inviteUsers" | i18n }}
|
{{ "inviteMember" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</app-header>
|
</app-header>
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ export class UserAddEditComponent implements OnInit {
|
|||||||
|
|
||||||
if (this.editMode) {
|
if (this.editMode) {
|
||||||
this.editMode = true;
|
this.editMode = true;
|
||||||
this.title = this.i18nService.t("editUser");
|
this.title = this.i18nService.t("editMember");
|
||||||
try {
|
try {
|
||||||
const user = await this.apiService.getProviderUser(this.providerId, this.providerUserId);
|
const user = await this.apiService.getProviderUser(this.providerId, this.providerUserId);
|
||||||
this.type = user.type;
|
this.type = user.type;
|
||||||
@ -54,7 +54,7 @@ export class UserAddEditComponent implements OnInit {
|
|||||||
this.logService.error(e);
|
this.logService.error(e);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.title = this.i18nService.t("inviteUser");
|
this.title = this.i18nService.t("inviteMember");
|
||||||
}
|
}
|
||||||
|
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user