Fix Select title hidden by Filtering(true) in apps init prompts#4603
Open
jamesbroadhead wants to merge 2 commits intodatabricks:mainfrom
Open
Fix Select title hidden by Filtering(true) in apps init prompts#4603jamesbroadhead wants to merge 2 commits intodatabricks:mainfrom
jamesbroadhead wants to merge 2 commits intodatabricks:mainfrom
Conversation
huh's Select.Filtering(true) immediately activates filter mode, which replaces the Title with a blank filter text input in titleView(). This meant the user never saw what resource they were being asked to select (e.g., "Select SQL Warehouse"). Remove Filtering(true) so the Title renders. Users can still press / to activate filtering (bound by default in huh's keymap). Update the description hint from "type to filter" to "press / to filter". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Test that: - Title is visible in the initial render without Filtering(true) - Filtering(true) replaces the Title with a blank filter input (the bug) - Pressing '/' activates filtering and correctly filters options - Help text includes the filter hint Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
An authorized user can trigger integration tests manually by following the instructions below: Trigger: Inputs:
Checks will be approved automatically on success. |
igrekun
approved these changes
Feb 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
huh.Select.Filtering(true)immediately activates filter mode, which replaces the Title with a blank filter text input intitleView()— so the user never saw what resource they were selecting (e.g., "Select SQL Warehouse")Filtering(true)so the Title renders on initial display. Users can still press/to activate filtering (bound by default in huh's keymap)Affects both
promptFromListWithLabel(all resource pickers duringapps init) andPromptForAppSelection.Test plan
databricks apps initinteractively, select a feature, and verify the resource picker title (e.g., "Select SQL Warehouse") is now visible/activates filtering and typing filters the listEscexits filter mode and restores the title🤖 Generated with Claude Code