Skip to content
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: Search Input Placeholder Text Inconsistency #506

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

manascb1344
Copy link

Issue

The placeholder text in the search input on the Processing website shows inconsistency. Initially, it displays 'Search,' but upon clicking the input box, it changes to 'Search with Google,' deviating from the expected behavior of consistently displaying 'Search with Google.'

Fixes Issue: #502

Changes Made

  1. Modified the id property for the search input to ensure the placeholder text remains 'Search with Google' both before and after clicking on the input box.

    • From: id: focused ? 'searchWithGoogle' : 'search'
    • To: id: 'searchWithGoogle'
  2. Updated the placeholder text in the code to reflect the expected behavior.

    • Changed "search": "Search" to "search": "Search with Google"
    • Changed "search": "Buscar" to "search": "Buscar con Google"

Test

Verified the changes by following the steps to reproduce the issue:

  1. Visit the Processing website.
  2. Locate the search bar in the navigation.
  3. Observed the placeholder text before and after clicking on the search input box.
  4. Verified that the placeholder text remains consistent as 'Search with Google' in both states.

Additional Notes

These changes address the placeholder text inconsistency and align the behavior with the expected outcome. The modified code ensures a better user experience on the Processing website by providing clear and consistent placeholder text in the search input.

Please review and merge these changes. If there are any concerns or questions, feel free to discuss them in the comments.

Attached a video demonstration showcasing the implemented changes. The demo illustrates the search input behavior confirming that the placeholder text now consistently displays 'Search with Google'.

Processing-Website-Fix.mp4

@manascb1344
Copy link
Author

Hey @SableRaf ! 🚀 Just wanted to bring your attention to a recent fix in PR #506 . Resolved an issue with placeholder text inconsistency in the Processing website's search input. Fixes issue: #502

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant