File tree 1 file changed +6
-3
lines changed
src/components/admin/events
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -224,9 +224,12 @@ function EventsTable() {
224
224
: "hover:bg-[#F7F7F7] text-[#656767] text-sm"
225
225
}
226
226
>
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
+ >
229
231
< input
232
+ aria-labelledby = { `checkbox-${ row . id } ` }
230
233
type = "checkbox"
231
234
className = "cursor-pointer"
232
235
onChange = { ( event ) => handleSelectRow ( event , row . id ) }
@@ -235,7 +238,7 @@ function EventsTable() {
235
238
</ td >
236
239
< td className = "whitespace-wrap px-2 py-4" > { row . eventName } </ td >
237
240
< td > { row . city } </ td >
238
- < td className = "hidden sm:table-cell" > { row . date } </ td >
241
+ < td className = "hidden sm:table-cell" > { row . date } </ td > ∏
239
242
< td className = "hidden sm:table-cell" > { row . from } </ td >
240
243
< td className = "hidden sm:table-cell" > { row . to } </ td >
241
244
< td className = "hidden sm:table-cell" > { row . chapter } </ td >
You can’t perform that action at this time.
0 commit comments