fix: quiz columns

This commit is contained in:
Jannat Patel
2024-10-08 16:03:37 +05:30
parent 9b9af0215a
commit 3d82c36250

View File

@@ -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',
},
]
})