feature/feature/IO-3554-Form-Row-Layout - Fix search, bump deps, fix formlayout

This commit is contained in:
Dave
2026-02-25 15:22:39 -05:00
parent 48017e7471
commit 15bb1e72a2
2 changed files with 9 additions and 13 deletions

View File

@@ -160,10 +160,6 @@ export default function GlobalSearch() {
return (
<AutoComplete
options={options}
showSearch={{
onSearch: handleSearch,
filterOption: false
}}
defaultActiveFirstOption
onKeyDown={(e) => {
if (e.key !== "Enter") return;
@@ -173,12 +169,13 @@ export default function GlobalSearch() {
}}
>
<Input.Search
className="global-search-autocomplete-fix"
// className="global-search-autocomplete-fix"
size="large"
placeholder={t("general.labels.globalsearch")}
enterButton
allowClear
loading={loading}
onSearch={handleSearch}
/>
</AutoComplete>
);