docs: v1.5.7 动态API提供商管理,OpenCode Go集成,Bug修复

This commit is contained in:
hmo
2026-05-05 15:53:24 +08:00
parent ea29c77fe3
commit 30fbe92b9a
11 changed files with 594 additions and 231 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ class Student(db.Model):
key=lambda p: (severity_order.get(p.severity, 1), p.created_at)
)
# 通过关联获取问题名称
problem_names = [p.problem.name if p.problem else p.problem_name for p in problems_list]
problem_names = [p.problem.name if p.problem else "未知问题" for p in problems_list]
# 获取目标统计
goal_count = len(self.goal_records) if self.goal_records else 0