Skip to content

Commit 8a8caa3

Browse files
committed
Change(batch monitor): Default dropdown value 6h
1 parent d505ee5 commit 8a8caa3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

codeclash/viewer/templates/batch.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -676,9 +676,9 @@ <h1><i class="bi bi-cloud"></i> AWS Batch Job Monitor</h1>
676676
<div class="filter-container">
677677
<label for="time-range-filter">Time range:</label>
678678
<select id="time-range-filter" class="filter-select" onchange="applyTimeRangeFilter()">
679-
<option value="6">Last 6h</option>
679+
<option value="6" selected>Last 6h</option>
680680
<option value="12">Last 12h</option>
681-
<option value="24" selected>Last 24h</option>
681+
<option value="24">Last 24h</option>
682682
<option value="48">Last 48h</option>
683683
<option value="72">Last 72h</option>
684684
</select>
@@ -763,7 +763,7 @@ <h2>Bulk Actions</h2>
763763
let currentSort = { column: 'created_at', ascending: false };
764764
let statusFilter = '';
765765
let roundsFilter = 'any';
766-
let timeRangeHours = 24;
766+
let timeRangeHours = 6;
767767
let lastRefreshTime = null;
768768
let selectedJobs = new Set();
769769
let totalCpusRunning = 0;

0 commit comments

Comments
 (0)