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');