Skip to content

Commit 82a8971

Browse files
committed
fix: c'mon, I wanna sleep!!!
1 parent 3c742d9 commit 82a8971

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/components/admin/events/EventsTable.jsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,12 @@ function EventsTable() {
224224
: "hover:bg-[#F7F7F7] text-[#656767] text-sm"
225225
}
226226
>
227-
{/* eslint-disable-next-line */}
228-
<td className="hidden sm:table-cell py-4">
227+
<td
228+
className="hidden sm:table-cell py-4"
229+
id={`checkbox-${row.id}`}
230+
>
229231
<input
232+
aria-labelledby={`checkbox-${row.id}`}
230233
type="checkbox"
231234
className="cursor-pointer"
232235
onChange={(event) => handleSelectRow(event, row.id)}
@@ -235,7 +238,7 @@ function EventsTable() {
235238
</td>
236239
<td className="whitespace-wrap px-2 py-4">{row.eventName}</td>
237240
<td>{row.city}</td>
238-
<td className="hidden sm:table-cell">{row.date}</td>
241+
<td className="hidden sm:table-cell">{row.date}</td>
239242
<td className="hidden sm:table-cell">{row.from}</td>
240243
<td className="hidden sm:table-cell">{row.to}</td>
241244
<td className="hidden sm:table-cell">{row.chapter}</td>

0 commit comments

Comments
 (0)