mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
UI – Allow selecting label while search input is focused (#15664)
## Addresses #15649 https://www.loom.com/share/83e82bba3dfe4cd3a155fbb82b100831?sid=75d796ef-00d2-456b-a7a9-e0386e40c0c9 ## Checklist for submitter - [x] Changes file added for user-visible changes in `changes/` - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
This commit is contained in:
parent
1fa5004428
commit
648e292769
2 changed files with 1 additions and 1 deletions
1
changes/15649-select-label-after-searching
Normal file
1
changes/15649-select-label-after-searching
Normal file
|
|
@ -0,0 +1 @@
|
|||
- Fixed a bug preventing the user from selecting a label while the label search field was selected.
|
||||
|
|
@ -136,7 +136,6 @@ const LabelFilterSelect = ({
|
|||
|
||||
const onBlurLabelSearchInput = () => {
|
||||
isLabelSearchInputFocusedRef.current = false;
|
||||
setMenuIsOpen(false);
|
||||
};
|
||||
|
||||
const getOptionLabel = (option: ILabel | IEmptyOption) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue