1
0
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:
Conner Turnbull
2023-11-06 14:42:08 -05:00
committed by GitHub
parent ac1ab0bdcc
commit e6a09082c4
3 changed files with 80 additions and 69 deletions

View File

@@ -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;
}