File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
frontend/src/components/blocks/interview/question-attempts Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ import { DataTableSortableHeader } from '@/components/ui/data-table';
5
5
import { IQuestionAttempt } from '@/types/question-types' ;
6
6
7
7
export const columns : Array < ColumnDef < IQuestionAttempt > > = [
8
+ {
9
+ accessorKey : 'attemptId' ,
10
+ header : 'ID' ,
11
+ } ,
8
12
{
9
13
accessorKey : 'timestamp' ,
10
14
header : ( { column } ) => < DataTableSortableHeader column = { column } title = 'Attempted' /> ,
@@ -16,7 +20,7 @@ export const columns: Array<ColumnDef<IQuestionAttempt>> = [
16
20
{
17
21
accessorKey : 'language' ,
18
22
header : ( { column } ) => (
19
- < DataTableSortableHeader column = { column } title = 'Language' className = 'ml-auto mr-3 ' />
23
+ < DataTableSortableHeader column = { column } title = 'Language' className = 'ml-auto' />
20
24
) ,
21
25
cell ( { row } ) {
22
26
return (
You can’t perform that action at this time.
0 commit comments