From 82cfa9897cdf3d481819cd409196c0b8abd2b34a Mon Sep 17 00:00:00 2001 From: connorhaugh <49422820+connorhaugh@users.noreply.github.com> Date: Wed, 5 Apr 2023 09:36:20 -0400 Subject: [PATCH] feat: default scoring to 1, not zero. (#294) Since every course has graded problems, every course author will be editing or creating problems, and every learner will need to receive points for any problem in a graded assignment in order to earn a passing grade. So if what I encountered and am reporting here is reproducible, this should probably be addressed before the problem editor feature is released. --- src/editors/data/redux/problem/reducers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editors/data/redux/problem/reducers.js b/src/editors/data/redux/problem/reducers.js index 5642f81e2..a313ce10c 100644 --- a/src/editors/data/redux/problem/reducers.js +++ b/src/editors/data/redux/problem/reducers.js @@ -19,7 +19,7 @@ const initialState = { settings: { randomization: null, scoring: { - weight: 0, + weight: 1, attempts: { unlimited: true, number: '',