Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

align dashboard plans page wording on website #8699

Merged
merged 2 commits into from
Mar 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/dashboard/src/settings/Plans.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export default function () {
const openSourceFeatures = <>
<p className="truncate" title="Public Repositories">✓ Public &amp; Private Repositories</p>
<p className="truncate" title="4 Parallel Workspaces">✓ 4 Parallel Workspaces</p>
<p className="truncate" title="30 min Timeout">✓ 30 min Timeout</p>
<p className="truncate" title="30 min Inactivity Timeout">✓ 30 min Inactivity Timeout</p>
</>;
if (currentPlan.chargebeeId === freePlan.chargebeeId) {
planCards.push(<PlanCard isDisabled={!!assignedTs || pendingChargebeeCallback} plan={freePlan} isCurrent={!!accountStatement}>{openSourceFeatures}</PlanCard>);
Expand Down Expand Up @@ -405,7 +405,7 @@ export default function () {
const unleashedFeatures = <>
<p className="truncate" title={'Everything in ' + professionalPlan.name}>← Everything in {professionalPlan.name}</p>
<p className="truncate" title="16 Parallel Workspaces">✓ 16 Parallel Workspaces</p>
<p className="truncate" title="1h Timeout">✓ 1h Timeout</p>
<p className="truncate" title="1h Inactivity Timeout">✓ 1h Inactivity Timeout</p>
<p className="truncate" title="3h Timeout Boost">✓ 3h Timeout Boost</p>
</>;
const isUnleashedTsAssigned = !!assignedStudentUnleashedTs || !!assignedUnleashedTs;
Expand Down