-
Notifications
You must be signed in to change notification settings - Fork 1.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
Update feedback form note #21489
Update feedback form note #21489
Conversation
Generated by 🚫 Danger |
Quality Gate passedIssues Measures |
📲 You can test the changes from this Pull Request in Jetpack by scanning the QR code below to install the corresponding build.
|
📲 You can test the changes from this Pull Request in WordPress by scanning the QR code below to install the corresponding build.
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## trunk #21489 +/- ##
=======================================
Coverage 39.44% 39.44%
=======================================
Files 2121 2121
Lines 99564 99564
Branches 15313 15313
=======================================
Hits 39277 39277
Misses 56806 56806
Partials 3481 3481 ☔ View full report in Codecov by Sentry. |
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.
I tested it on-device and in an emulator and it works as described!
@@ -1148,7 +1148,8 @@ | |||
<string name="feedback_form_attachment_already_added">Attachment already added</string> | |||
<string name="feedback_form_unable_to_create_tempfile">Unable to create temporary file</string> | |||
<string name="feedback_form_add_attachments">Add attachments</string> | |||
<string name="feedback_form_note">If you need support, please get in touch using the \"Contact Support\" screen</string> | |||
<string name="feedback_form_note_text">Please note this is not a support form, and we will not be able to reply. If you need support, please use our "</string> |
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.
What is the trailing "
for?
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.
It's a trailing space, because feedback_form_note_link
("Contact Support screen") is appended to this string as a link.
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.
Fixes #21475
This PR updates the feedback form so that the note about the form not being for support is more prominent and more clearly worded. It also adds a link to the "Contact Support" screen.
When the link is clicked, I simply return the user to the Help screen where the user can see and tap the "Contact Support" link. I chose to do this to inform the user where "Contact Support" is, but I was torn between doing that or going straight to the support screen. Opinions welcome!