feat(config-ui): add full name in data scope search (#5742)

diff --git a/config-ui/src/plugins/components/data-scope-search/index.tsx b/config-ui/src/plugins/components/data-scope-search/index.tsx
index faa8394..ac7dc2f 100644
--- a/config-ui/src/plugins/components/data-scope-search/index.tsx
+++ b/config-ui/src/plugins/components/data-scope-search/index.tsx
@@ -59,7 +59,7 @@
 
   const getKey = (it: ItemType) => it.id;
 
-  const getName = (it: ItemType) => it.name;
+  const getName = (it: ItemType) => it.fullName;
 
   const handleChangeItems = (selectedItems: ItemType[]) => onChangeItems?.(selectedItems.map((it) => it.data));
 
diff --git a/config-ui/src/plugins/components/data-scope-search/types.ts b/config-ui/src/plugins/components/data-scope-search/types.ts
index 42d7a30..c3f6318 100644
--- a/config-ui/src/plugins/components/data-scope-search/types.ts
+++ b/config-ui/src/plugins/components/data-scope-search/types.ts
@@ -19,5 +19,6 @@
 export type ItemType = {
   id: ID;
   name: string;
+  fullName: string;
   data: any;
 };