update: default ping interval to 10s

This commit is contained in:
2026-03-18 20:59:50 +04:00
parent 5295fcfe79
commit fd821acec2
2 changed files with 2 additions and 2 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 || '60') === val ? 'selected' : '' %>><%= label %></option>
<option value="<%= val %>" <%= String(monitor.interval_s || '10') === val ? 'selected' : '' %>><%= label %></option>
<% }) %>
</select>
</div>