-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/red 556 less click grading #494
Conversation
Fixed extra horizontal scroll (which was adding extra padding to the bottom) Fixed page always have a scroll Fixed Assignment / User selection always having a scroll
.gitignore
Outdated
@@ -22,5 +22,5 @@ | |||
npm-debug.log* | |||
yarn-debug.log* | |||
yarn-error.log* | |||
.vscode/* | |||
# .vscode/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove don't comment!
} | ||
|
||
if (_.isEmpty(topic.questions)) { | ||
logger.error('GradingPage: nextProblem: empty questions'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the button is shown under these conditions, we should show users an error.
} else { | ||
const problemIndex = _.findIndex(topic.questions, ['id', problemId]); | ||
if (problemIndex < 0) { | ||
logger.warn('GradingPage: nextProblem: problem not found'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this jump out and show the user an error?
> | ||
Previous Problem | ||
</Button> | ||
<Button |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be hidden for students?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch
No description provided.