-
-
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
Fix #6056: Makes the resize of text box vertical #6057
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #6057 +/- ##
========================================
Coverage 45.21% 45.21%
========================================
Files 523 523
Lines 30722 30722
Branches 4605 4605
========================================
Hits 13892 13892
Misses 16830 16830 Continue to review full report at Codecov.
|
@@ -8,7 +8,7 @@ <h3> | |||
<p> | |||
<span ng-if="isExplorationPrivate">(Optional)</span> | |||
Please enter a brief description of what you have changed: | |||
<textarea rows="3" cols="50" ng-model="commitMessage" focus-on="saveChangesModalOpened" class="protractor-test-commit-message-input" autofocus></textarea> | |||
<textarea rows="3" cols="50" style="resize: vertical;" ng-model="commitMessage" focus-on="saveChangesModalOpened" class="protractor-test-commit-message-input" autofocus></textarea> |
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 the semicolon at the end of vertical
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 for the review! @kevinlee12 😃 Made the change. PTAL!
UI-wise, it looks great! 😄 |
@kevinlee12 Thanks for the review 😄 |
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, thanks @rakshitkumarcse!
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! (apparently forgot to tell Github that I ok-ed it)
@kevinlee12 |
Hi @rakshitkumarcse @kevinlee12, just wanted to leave a note FYI: I'm currently working on compiling the release and finalizing the changelog, and I found the title of this PR particularly hard to understand. With the existing title, I have no idea what "text box" refers to and what making its resizing "vertical" means. A better title would have been something like: "Fix #6056: Prevent the text box in the Save Draft modal from flowing out of the modal boundaries." Just wanted to leave a note for the future -- it's important to make sure your PR titles are self-contained and understandable, so that they can be easily compiled and classified for the release. Any contributor should be able to tell what the PR is doing just based on its title alone, without needing to look through its details. Thanks! |
Hi @seanlip. Sorry for the inconvenience. |
Explanation
Fixes #6056: Makes the resize of text box vertical
Checklist
python scripts/pre_commit_linter.py
andbash scripts/run_frontend_tests.sh
.