Merge pull request #1046 from pateljannat/issues-38

fix: quiz columns
This commit is contained in:
Jannat Patel
2024-10-08 16:27:04 +05:30
committed by GitHub

View File

@@ -362,17 +362,17 @@ const questionColumns = computed(() => {
{ {
label: __('ID'), label: __('ID'),
key: 'question', key: 'question',
width: '25%', width: '10rem',
}, },
{ {
label: __('Question'), label: __('Question'),
key: __('question_detail'), key: __('question_detail'),
width: '60%', width: '40rem',
}, },
{ {
label: __('Marks'), label: __('Marks'),
key: 'marks', key: 'marks',
width: '10%', width: '5rem',
}, },
] ]
}) })