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

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 537f1cb885 [INLONG-8800][Dashboard] Owners search component 
optimization (#8801)
537f1cb885 is described below

commit 537f1cb885854d7a42c57220af66eaf8b38f1448
Author: Lizhen <[email protected]>
AuthorDate: Thu Aug 24 18:50:08 2023 +0800

    [INLONG-8800][Dashboard] Owners search component optimization (#8801)
---
 inlong-dashboard/src/ui/components/UserSelect/index.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/inlong-dashboard/src/ui/components/UserSelect/index.tsx 
b/inlong-dashboard/src/ui/components/UserSelect/index.tsx
index 20c753ab02..7dc34a8b82 100644
--- a/inlong-dashboard/src/ui/components/UserSelect/index.tsx
+++ b/inlong-dashboard/src/ui/components/UserSelect/index.tsx
@@ -110,12 +110,12 @@ const UserSelect: React.FC<UserSelectProps> = ({
       {...rest}
       options={{
         ...rest.options,
-        requestTrigger: ['onSearch'],
+        requestTrigger: ['onSearch', 'onOpen'],
         requestService: name => ({
           url: '/user/listAll',
           method: 'POST',
           data: {
-            name,
+            keyword: name,
           },
         }),
         requestParams: {

Reply via email to