Fix typos in data retention references across multiple views

This commit is contained in:
Simon Larsen
2024-11-30 19:02:26 +00:00
parent d53b2d0e1c
commit 5dbb80457a
3 changed files with 9 additions and 9 deletions

View File

@@ -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
@@ -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">

View File

@@ -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
@@ -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">

View File

@@ -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 sales@oneuptime.com for a discount. </p>
</div>
@@ -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";
@@ -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";
}
}