Question
Summary
In the V2 UI, several workspace/prompt-related controls appear to be unavailable in the Web version, while they are present or configurable only in Desktop.
This affects at least:
- agent selector in the prompt area
- custom agents visibility setting
- terminal-related controls
- search-related controls
- file list / workspace navigation controls
I would like to clarify whether this is intentional product behavior or an accidental regression caused by desktop-only guards in the V2 UI.
For the agent selector, the control appears to be hidden by:
const showAgentControl = createMemo(
() => settings.general.showCustomAgents() && agentNames().length > 0
)
In settings:
<Show when={desktop()}>
<AdvancedSection />
</Show>
Question
Summary
In the V2 UI, several workspace/prompt-related controls appear to be unavailable in the Web version, while they are present or configurable only in Desktop.
This affects at least:
I would like to clarify whether this is intentional product behavior or an accidental regression caused by desktop-only guards in the V2 UI.
For the agent selector, the control appears to be hidden by:
In settings: