mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Website: Fix features table on /pricing page (#17574)
Closes: #17573 Changes: - Updated the pricing page to show tier names on the first category of the visible features table.
This commit is contained in:
parent
9e147494a3
commit
4c3c20497c
1 changed files with 4 additions and 4 deletions
8
website/views/pages/pricing.ejs
vendored
8
website/views/pages/pricing.ejs
vendored
|
|
@ -153,14 +153,14 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<td><h4><%- category.categoryName %></h4></td>
|
||||
<%if(pricingTable.indexOf(category) === 0) {%>
|
||||
<%if(pricingTableForIt.indexOf(category) === 0) {%>
|
||||
<td class="text-center">
|
||||
<strong>Free</strong>
|
||||
</td>
|
||||
<%}else {%>
|
||||
<td ></td>
|
||||
<%}%>
|
||||
<%if(pricingTable.indexOf(category) === 0) {%>
|
||||
<%if(pricingTableForIt.indexOf(category) === 0) {%>
|
||||
<td class="text-center">
|
||||
<strong>Premium</strong>
|
||||
</td>
|
||||
|
|
@ -224,14 +224,14 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<td><h4><%- category.categoryName %></h4></td>
|
||||
<%if(pricingTable.indexOf(category) === 0) {%>
|
||||
<%if(pricingTableForSecurity.indexOf(category) === 0) {%>
|
||||
<td class="text-center">
|
||||
<strong>Free</strong>
|
||||
</td>
|
||||
<%}else {%>
|
||||
<td ></td>
|
||||
<%}%>
|
||||
<%if(pricingTable.indexOf(category) === 0) {%>
|
||||
<%if(pricingTableForSecurity.indexOf(category) === 0) {%>
|
||||
<td class="text-center">
|
||||
<strong>Premium</strong>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Reference in a new issue