diff --git a/lib/components/common/CustomMappingDropdown.tsx b/lib/components/common/CustomMappingDropdown.tsx
index 5d1b083..9b8e49b 100644
--- a/lib/components/common/CustomMappingDropdown.tsx
+++ b/lib/components/common/CustomMappingDropdown.tsx
@@ -17,7 +17,7 @@ import {CreateCustomDictionaryFieldHeader} from "./CreateCustomDictionaryFieldHe
import {DataContext} from "../../contexts/data/DataContext.ts";
import NoResultField from "./NoResultField.tsx";
import {useUIContext} from "../../contexts/ui/UIContext.ts";
-import {getAbbreviationFromOption} from "../../helpers/optionsHelpers.ts";
+import {getTitleFromOption} from "../../helpers/optionsHelpers.ts";
import { isCustomDictionaryValid } from '../../services/validatorsService.ts';
const {
@@ -173,6 +173,7 @@ interface CustomEntitiesDropdownProps {
options: {
errors?: string;
searchPlaceholder?: string;
+ initialSearchInput?: string;
noResultReason?: string;
onSearch: (searchValue: string) => Promise