fix
Some checks failed
Deploy / deploy (build, debian, 22) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822) (push) Has been cancelled

This commit is contained in:
2026-05-05 10:00:40 -06:00
parent 21e3a7f39b
commit f63f7cbbce

View File

@@ -227,19 +227,13 @@ const columns = computed<DataTableColumn<GradebookRow>[]>(() => {
{
title: "学生",
key: "username",
width: 140,
width: 100,
fixed: "left",
render: (row) => {
const studentName = displayGradebookStudentName(row)
return h(NText, { title: studentName }, { default: () => studentName })
},
},
{
title: "班级",
key: "classname",
width: 90,
fixed: "left",
},
...tasks.map((task) => ({
title: () => renderTaskHeader(task),
key: `task-${task.id}`,