Skip to content

Commit

Permalink
fix: quiz columns
Browse files Browse the repository at this point in the history
  • Loading branch information
pateljannat committed Oct 8, 2024
1 parent 9b9af02 commit 3d82c36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/pages/QuizForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -362,17 +362,17 @@ const questionColumns = computed(() => {
{
label: __('ID'),
key: 'question',
width: '25%',
width: '10rem',
},
{
label: __('Question'),
key: __('question_detail'),
width: '60%',
width: '40rem',
},
{
label: __('Marks'),
key: 'marks',
width: '10%',
width: '10rem',
},
]
})
Expand Down

0 comments on commit 3d82c36

Please sign in to comment.