mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
[PM-4716] [PM-4717] [AC-1799] UI Bugs around Paid Plans (#6810)
* [PM-4717] Fixed teams starter typo in trial initiation * [PM-4716] Fixed duplicated information in enterprise plan details * [AC-1799] Resolved unresponsive "invite members" button when adding users to org
This commit is contained in:
@@ -431,14 +431,14 @@ export class PeopleComponent
|
||||
// Click on user email: Edit Flow
|
||||
|
||||
// User attempting to invite new users in a free org with max users
|
||||
if (!user && this.allUsers.length === this.organization.seats) {
|
||||
if (
|
||||
!user &&
|
||||
this.allUsers.length === this.organization.seats &&
|
||||
(this.organization.planProductType === ProductType.Free ||
|
||||
this.organization.planProductType === ProductType.TeamsStarter)
|
||||
) {
|
||||
// Show org upgrade modal
|
||||
if (
|
||||
this.organization.planProductType === ProductType.Free ||
|
||||
this.organization.planProductType === ProductType.TeamsStarter
|
||||
) {
|
||||
await this.showSeatLimitReachedDialog();
|
||||
}
|
||||
await this.showSeatLimitReachedDialog();
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user