Skip to Main Content
Patch My PC Ideas & Feedback

A community where customers and the community can provide feedback to make a better product for everyone! For more details on how we prioritize requests, please see:

6 VOTE
Status SUBMITTED
Categories Patch My PC Cloud
Created by Guest
Created on Oct 21, 2025

Make Assignment Group Search Already Expanded (AKA Don't require clicking Magnifying Glass icon)

Currently, when you want to searching for a group to assign to a deployment in Patch My PC Cloud, you have to click the Magnifying glass icon in order for the search field to become available. That is an extra step/click, instead of having the search field already expanded/available. It's especially annoying when performing multiple assignments (required, available, update, rings, etc.) on a deployment.

  • Attach files
  • Romuald Traugutt
    Dec 29, 2025

    Hi,

    Please, change so that I / we can just start typing and searching in the input field -- please see the paragraph called UX Drawbacks further below.

    Below is what Artificial Intelligence replied with

    Clicking the magnifying glass icon before typing into a search input field is a common UX design pattern, often used to reveal or expand a hidden/compact search box while saving screen space. This requires an extra click because the input isn't immediately visible or focused, increasing interaction cost—users must first activate the field, then focus it for typing.

    Why It Happens

    Designers hide the full input behind the icon (especially on mobile or responsive sites) to prioritize space, with the icon acting as a trigger to expand the field. Browser rendering of HTML5 <input type="search"> adds a default magnifying glass in some (Chrome/Safari), but custom implementations often delay focus to prevent accidental input. Poor JavaScript handling fails to auto-focus the input on icon click, forcing a second tap.

    UX Drawbacks

    This two-click flow slows users, as they expect immediate typing after one interaction—violating principles like proximity and single-click affordance. Icon-only search is harder to spot without an open field nearby, and keyboard users struggle if focus doesn't shift automatically. Nielsen Norman Group notes it prolongs searches unnecessarily on desktop.

    Fixes for Developers

    Auto-focus the input on icon click using JavaScript: document.querySelector('input').focus(); after revealing the field. Expand the box on hover for desktops, ensure Enter submits, and place in upper-right with high contrast. Test for accessibility with ARIA labels on icons.

  • +4