-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Question editor fixes #7910
Question editor fixes #7910
Conversation
Assigning @aks681 for the first-pass review of this pull request. Thanks! |
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.
Thanks @vinitamurthi! Left a comment, otherwise LGTM.
@@ -88,6 +88,7 @@ angular.module('oppia').directive('questionsList', [ | |||
ctrl.getQuestionSummaries = | |||
QuestionsListService.getCachedQuestionSummaries; | |||
ctrl.getCurrentPageNumber = QuestionsListService.getCurrentPageNumber; | |||
ctrl.isEditorOpen = false; |
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.
Could you make this editorIsOpen, following the existing convention of starting with verbs only for method/function names?
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.
Done
Codecov Report
@@ Coverage Diff @@
## develop #7910 +/- ##
===========================================
- Coverage 83.99% 83.98% -0.01%
===========================================
Files 1130 1130
Lines 67991 67996 +5
Branches 3815 3816 +1
===========================================
- Hits 57104 57103 -1
- Misses 9607 9613 +6
Partials 1280 1280
|
@seanlip Made the changes, PTAL |
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.
Thanks! One small question, everything else looks good.
'above as [All other answers]) and tag the following misconceptions' + | ||
' to that answer group: name, name_2, name_3'); | ||
'above as [All other answers]) and tag the following misconceptions ' + | ||
'to that answer group: name, name_2, name_3'); |
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.
Odd -- is the extra space here intentional? Seems like a typo (there's usually just one space after a colon).
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.
Ah that was an extra space, removed it
@DubeySandeep @aks681 PTAL as codeowners. This needs to be merged into the November release. |
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.
lgtm!
@DubeySandeep can you take a look? |
Hi @vinitamurthi. Due to recent changes in the "develop" branch, this PR now has a merge conflict. Please follow this link if you need help resolving the conflict, so that the PR can be merged. Thanks! |
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.
LGTM for the code owner file.
Explanation
This PR adds the following fixes:
5. Change the wording for the question editor warning when misconceptions aren't tagged
Checklist
python -m scripts.pre_commit_linter
andpython -m scripts.run_frontend_tests
.