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';
55import { IQuestionAttempt } from '@/types/question-types' ;
66
77export const columns : Array < ColumnDef < IQuestionAttempt > > = [
8+ {
9+ accessorKey : 'attemptId' ,
10+ header : 'ID' ,
11+ } ,
812 {
913 accessorKey : 'timestamp' ,
1014 header : ( { column } ) => < DataTableSortableHeader column = { column } title = 'Attempted' /> ,
@@ -16,7 +20,7 @@ export const columns: Array<ColumnDef<IQuestionAttempt>> = [
1620 {
1721 accessorKey : 'language' ,
1822 header : ( { column } ) => (
19- < DataTableSortableHeader column = { column } title = 'Language' className = 'ml-auto mr-3 ' />
23+ < DataTableSortableHeader column = { column } title = 'Language' className = 'ml-auto' />
2024 ) ,
2125 cell ( { row } ) {
2226 return (
You can’t perform that action at this time.
0 commit comments