Skip to content

Commit

Permalink
Merge pull request #31 from iron-security/feat/configurator
Browse files Browse the repository at this point in the history
feat: correct pricing
  • Loading branch information
hazcod authored Apr 25, 2023
2 parents 7bad469 + e72d65f commit 0b075c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion layouts/section/licenses.html
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ <h2 class="bold text-white text-wrap">
</td>

<td id="lblEndpoints">
&euro; 45
&euro; 50
</td>
</tr>

Expand Down
2 changes: 1 addition & 1 deletion static/js/licenses.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function updateTotals()
let total = 0;

const edrNum = inEDR.val() !== "0" ? Number(inEDR.val()) : 0;
const edrTotal = edrNum * 45;
const edrTotal = edrNum * 50;
lblEDR.text('€ ' + edrTotal);
total += edrTotal;

Expand Down
2 changes: 1 addition & 1 deletion workers/quote.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ function generatePDF(request)

if (request.quote.number_edr > 0)
{
let itemCost = 45 * request.quote.number_edr;
let itemCost = 50 * request.quote.number_edr;

doc.setFont(undefined, 'normal');
docText(20, itemY, ('x' + request.quote.number_edr).padEnd(15) + ' Endpoint Detection & Response (incl. Threat Hunting)');
Expand Down

0 comments on commit 0b075c1

Please sign in to comment.