From 33fc6691698165d29baeea619e045c435634bb56 Mon Sep 17 00:00:00 2001 From: Namit2003 Date: Mon, 22 Dec 2025 20:25:19 -0500 Subject: [PATCH] fix: lint errors --- src/pages/history.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/pages/history.tsx b/src/pages/history.tsx index fd7b965..cff2010 100644 --- a/src/pages/history.tsx +++ b/src/pages/history.tsx @@ -54,7 +54,10 @@ export const history = new Elysia().use(userService).get( id="delete-selected-btn" class="flex btn-secondary flex-row gap-2 text-contrast" > - Delete Selected (0) + {" "} + + Delete Selected (0) + @@ -138,7 +141,8 @@ export const history = new Elysia().use(userService).get( @@ -247,7 +251,7 @@ export const history = new Elysia().use(userService).get( // Checkbox management const selectAllCheckbox = document.getElementById('select-all'); - const jobCheckboxes = document.querySelectorAll('.job-checkbox'); + const jobCheckboxes = document.querySelectorAll('[data-checkbox-type="job"]'); const deleteSelectedBtn = document.getElementById('delete-selected-btn'); const deleteSelectedContainer = document.getElementById('delete-selected-container'); const selectedCountSpan = document.getElementById('selected-count');