update: default ping interval to 30s, update free tier limit to match

This commit is contained in:
2026-03-18 21:01:41 +04:00
parent fd821acec2
commit e4895afe8e
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -66,7 +66,7 @@
<select id="<%= prefix %>interval"
class="w-full <%= bg %> border <%= border %> rounded-lg px-4 py-2.5 text-gray-100 focus:outline-none focus:border-blue-500">
<% intervals.forEach(function([val, label]) { %>
<option value="<%= val %>" <%= String(monitor.interval_s || '10') === val ? 'selected' : '' %>><%= label %></option>
<option value="<%= val %>" <%= String(monitor.interval_s || '30') === val ? 'selected' : '' %>><%= label %></option>
<% }) %>
</select>
</div>