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 08cfc8f92 [INLONG-4752][Dashboard] Keyword param error(#4753)
08cfc8f92 is described below

commit 08cfc8f92d7b231b244ddaac58a47cb69c8387ef
Author: Daniel <[email protected]>
AuthorDate: Fri Jun 24 14:12:08 2022 +0800

    [INLONG-4752][Dashboard] Keyword param error(#4753)
---
 inlong-dashboard/src/pages/Clusters/NodeManage.tsx | 4 ++--
 inlong-dashboard/src/pages/Clusters/index.tsx      | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/inlong-dashboard/src/pages/Clusters/NodeManage.tsx 
b/inlong-dashboard/src/pages/Clusters/NodeManage.tsx
index 2a2d4fe36..4dd10aa87 100644
--- a/inlong-dashboard/src/pages/Clusters/NodeManage.tsx
+++ b/inlong-dashboard/src/pages/Clusters/NodeManage.tsx
@@ -32,7 +32,7 @@ import { timestampFormat } from '@/utils';
 const getFilterFormContent = defaultValues => [
   {
     type: 'inputsearch',
-    name: 'keyWord',
+    name: 'keyword',
   },
 ];
 
@@ -44,7 +44,7 @@ const Comp: React.FC = () => {
   );
 
   const [options, setOptions] = useState({
-    keyWord: '',
+    keyword: '',
     pageSize: defaultSize,
     pageNum: 1,
     type,
diff --git a/inlong-dashboard/src/pages/Clusters/index.tsx 
b/inlong-dashboard/src/pages/Clusters/index.tsx
index 82db95bff..0f7a660d7 100644
--- a/inlong-dashboard/src/pages/Clusters/index.tsx
+++ b/inlong-dashboard/src/pages/Clusters/index.tsx
@@ -33,7 +33,7 @@ import { timestampFormat } from '@/utils';
 const getFilterFormContent = defaultValues => [
   {
     type: 'inputsearch',
-    name: 'keyWord',
+    name: 'keyword',
   },
   {
     type: 'radiobutton',
@@ -52,7 +52,7 @@ const getFilterFormContent = defaultValues => [
 
 const Comp: React.FC = () => {
   const [options, setOptions] = useState({
-    keyWord: '',
+    keyword: '',
     pageSize: defaultSize,
     pageNum: 1,
     type: Clusters[0].value,

Reply via email to