Skip to content

Commit 388943c

Browse files
Update index.html
1 parent 26aff98 commit 388943c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

public/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -699,15 +699,15 @@ <h2 class="text-xl font-bold text-white mb-4 border-b border-gray-700 pb-2">Manu
699699
</div>
700700

701701
<div class="bg-gray-800 p-4 sm:p-6 rounded-xl shadow-lg">
702-
<!-- NEW: Added Clear All button -->
703702
<div class="flex justify-between items-center mb-4 border-b border-gray-700 pb-2">
704703
<h2 class="text-xl font-bold text-white">Scheduled Recordings</h2>
705704
<button id="clear-scheduled-dvr-btn" class="hidden bg-gray-600 hover:bg-gray-500 text-white text-sm font-bold py-1 px-3 rounded-md">Clear All</button>
706705
</div>
707706
<div id="no-dvr-jobs-message" class="hidden text-center text-gray-500 p-4">
708707
<p class="mt-1 text-sm">No upcoming recordings scheduled. Find a program in the TV Guide to record it.</p>
709708
</div>
710-
<div class="overflow-x-auto">
709+
<!-- MODIFIED: Wrapped the table in a div with a new ID -->
710+
<div id="dvr-jobs-table-container" class="overflow-x-auto">
711711
<table class="min-w-full dvr-table">
712712
<thead>
713713
<tr>
@@ -726,15 +726,15 @@ <h2 class="text-xl font-bold text-white">Scheduled Recordings</h2>
726726
</div>
727727

728728
<div class="bg-gray-800 p-4 sm:p-6 rounded-xl shadow-lg">
729-
<!-- NEW: Added Clear All button -->
730729
<div class="flex justify-between items-center mb-4 border-b border-gray-700 pb-2">
731730
<h2 class="text-xl font-bold text-white">Completed Recordings</h2>
732731
<button id="clear-completed-dvr-btn" class="hidden bg-gray-600 hover:bg-gray-500 text-white text-sm font-bold py-1 px-3 rounded-md">Clear All</button>
733732
</div>
734733
<div id="no-dvr-recordings-message" class="hidden text-center text-gray-500 p-4">
735734
<p class="mt-1 text-sm">No recordings have been completed yet.</p>
736735
</div>
737-
<div class="overflow-x-auto">
736+
<!-- MODIFIED: Wrapped the table in a div with a new ID -->
737+
<div id="dvr-recordings-table-container" class="overflow-x-auto">
738738
<table class="min-w-full dvr-table">
739739
<thead>
740740
<tr>

0 commit comments

Comments
 (0)