Skip to content

Commit

Permalink
Fix typos in data retention references across multiple views
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Nov 30, 2024
1 parent d53b2d0 commit 5dbb804
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Home/Views/apm.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<h2 class="text-3xl font-bold tracking-tight text-gray-900">Custom Data Rentention and Data
Residency.
</h2>
<p class="mt-4 text-lg text-gray-500"> Set custom data retention and data residency. Have metrics, traces and logs stored in US or EU data centers to be compliant. Lower data rentention for non critical services to save costs. </p>
<p class="mt-4 text-lg text-gray-500"> Set custom data retention and data residency. Have metrics, traces and logs stored in US or EU data centers to be compliant. Lower data retention for non critical services to save costs. </p>
<div class="mt-6">
<a href="/accounts/register"
class="rounded-md bg-indigo-600 px-3.5 py-1.5 text-base font-semibold leading-7 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 hover:text-white">Get
Expand All @@ -89,7 +89,7 @@
<div class="mt-8 border-t border-gray-200 pt-6">
<blockquote>
<div>
<p class="text-base text-gray-500">&ldquo;Using custom data rentention for different services has helped us save thousands in costs.&rdquo;</p>
<p class="text-base text-gray-500">&ldquo;Using custom data retention for different services has helped us save thousands in costs.&rdquo;</p>
</div>
<footer class="mt-3">
<div class="flex items-center space-x-3">
Expand Down
4 changes: 2 additions & 2 deletions Home/Views/logs-management.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<h2 class="text-3xl font-bold tracking-tight text-gray-900">Custom Data Rentention and Data
Residency.
</h2>
<p class="mt-4 text-lg text-gray-500"> Set custom data retention and data residency. Have logs stored in US or EU data centers to be compliant. Lower data rentention for non critical services to save costs. </p>
<p class="mt-4 text-lg text-gray-500"> Set custom data retention and data residency. Have logs stored in US or EU data centers to be compliant. Lower data retention for non critical services to save costs. </p>
<div class="mt-6">
<a href="/accounts/register"
class="rounded-md bg-indigo-600 px-3.5 py-1.5 text-base font-semibold leading-7 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 hover:text-white">Get
Expand All @@ -91,7 +91,7 @@
<div class="mt-8 border-t border-gray-200 pt-6">
<blockquote>
<div>
<p class="text-base text-gray-500">&ldquo;Using custom data rentention for different services has helped us save thousands in costs.&rdquo;</p>
<p class="text-base text-gray-500">&ldquo;Using custom data retention for different services has helped us save thousands in costs.&rdquo;</p>
</div>
<footer class="mt-3">
<div class="flex items-center space-x-3">
Expand Down
10 changes: 5 additions & 5 deletions Home/Views/pricing.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -652,13 +652,13 @@
<div class="p-8 sm:p-10 -mt-8">
<div class="flex justify-between">
<p class="text-base font-semibold text-gray-500">Data Rentention (in days)</p>
<p id="data-rentention-in-days" class="text-base font-semibold text-gray-600">15 Days</p>
<p id="data-retention-in-days" class="text-base font-semibold text-gray-600">15 Days</p>
</div>
<input id="default-range" type="range" value="15" max="180" min="0" step="1"
onchange="updateTelemetryPrice(null, this.value)" oninput="updateTelemetryPrice(null,this.value)"
class="w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer ">
<div>
<p id="more-than-6-months-rentention" style="display: none;" class="text-base text-gray-600">If you're
<p id="more-than-6-months-retention" style="display: none;" class="text-base text-gray-600">If you're
looking for data rention of more than 6 months. contact [email protected] for a discount. </p>
</div>

Expand Down Expand Up @@ -1585,7 +1585,7 @@
// update telemetry count - total-number-of-telemetry
document.getElementById("total-number-of-gb-ingested").innerHTML = numberOfGb + " GB";
document.getElementById("data-rentention-in-days").innerHTML = numberOfDays + " Days";
document.getElementById("data-retention-in-days").innerHTML = numberOfDays + " Days";
Expand All @@ -1600,10 +1600,10 @@
if (numberOfDays === 180) {
// show more than 100 monitors message
document.getElementById("more-than-6-months-rentention").style.display = "block";
document.getElementById("more-than-6-months-retention").style.display = "block";
} else {
// hide more than 100 monitors
document.getElementById("more-than-6-months-rentention").style.display = "none";
document.getElementById("more-than-6-months-retention").style.display = "none";
}
}
Expand Down

0 comments on commit 5dbb804

Please sign in to comment.