This is an automated email from the ASF dual-hosted git repository.

ming pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-hugegraph-toolchain.git


The following commit(s) were added to refs/heads/master by this push:
     new 6d0b01b9 Fixed an issue where the drop-down box could not display all 
options (#535)
6d0b01b9 is described below

commit 6d0b01b9eb564083c38225e14f73992b16e4f2cc
Author: wanganjuan <[email protected]>
AuthorDate: Thu Nov 16 15:02:31 2023 +0800

    Fixed an issue where the drop-down box could not display all options (#535)
    
    Fixed an issue where the drop-down box could not display all options
---
 .../data-import/import-tasks/datamap-configs/EdgeMap.tsx                 | 1 -
 .../data-import/import-tasks/datamap-configs/VertexMap.tsx               | 1 -
 2 files changed, 2 deletions(-)

diff --git 
a/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/EdgeMap.tsx
 
b/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/EdgeMap.tsx
index 148d76b7..84729a65 100644
--- 
a/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/EdgeMap.tsx
+++ 
b/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/EdgeMap.tsx
@@ -579,7 +579,6 @@ const EdgeMap: React.FC<EdgeMapProps> = observer(
                         <Select
                           width={170}
                           size="medium"
-                          getPopupContainer={(e: any) => e.parentNode}
                           value={mapped_name}
                           onChange={(value: string) => {
                             dataMapStore.setEdgeFieldMapping(
diff --git 
a/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/VertexMap.tsx
 
b/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/VertexMap.tsx
index 97334415..b9e2f283 100644
--- 
a/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/VertexMap.tsx
+++ 
b/hugegraph-hubble/hubble-fe/src/components/graph-management/data-import/import-tasks/datamap-configs/VertexMap.tsx
@@ -452,7 +452,6 @@ const VertexMap: React.FC<VertexMapProps> = observer(
                         <Select
                           width={170}
                           size="medium"
-                          getPopupContainer={(e: any) => e.parentNode}
                           value={mapped_name}
                           onChange={(value: string) => {
                             dataMapStore.setVertexFieldMapping(

Reply via email to