-
Notifications
You must be signed in to change notification settings - Fork 32
🎨 [Frontend] Account request form: adapt defaults #7894
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
🎨 [Frontend] Account request form: adapt defaults #7894
Conversation
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.
Pull Request Overview
This PR updates the default selections in the S4L account request form by moving the “Other” option to the top for both the “Application” and “Hear Options” fields and removing the duplicate trailing entry in the hear options.
- Moved “Other” to the first position in the Application dropdown
- Moved “Other” to the first position in the Hear Options dropdown and removed its duplicate at the end
Comments suppressed due to low confidence (2)
services/static-webserver/client/source/class/osparc/auth/ui/RequestAccount.js:161
- [nitpick] The id for "Other" is lowercase here, which is inconsistent with the Title_Case convention of other option ids (e.g., Antenna_Design_for_Wireless_Communication). Consider renaming it to "Other" (or matching your project’s id style) for consistency.
id: "other",
services/static-webserver/client/source/class/osparc/auth/ui/RequestAccount.js:290
- [nitpick] This id uses Title_Case for "Other", but the application select uses lowercase. To prevent confusion and potential mismatches, align the casing of these ids across both dropdown definitions.
id: "Other",
eofli
left a comment
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 Odei.
|
@Mergifyio queue |
🛑 The pull request has been removed from the queue
|
|
This pull request has been removed from the queue for the following reason: The merge conditions cannot be satisfied due to failing checks:You may have to fix your CI before adding the pull request to the queue again. |
|
@Mergifyio queue |
✅ The pull request has been merged automaticallyThe pull request has been merged automatically at 5d5eac3 |
|



What do these changes do?
Context:
"""
In fields like "Application", users who don't make a choice end up with "Antenna design...". So POs are not actually able to distinguish users who actually chose "Antenna design..." from those who haven't chosen anything. An alternative would be to add a choice "Other" or "Not specified" and set this as default.
Same goes for "How did you hear about us?". Here we can easily change the default to "Other".
"""
This PR changes the default options in S4L's request account form.
Application: "Antenna Design for Wireless Communication" -> "Other"Hear Options: "Search Engine" -> "Other"Related issue/s
How to test
Dev-ops