From 19dce838d19433444beacc2d6cced6d2b6ff2253 Mon Sep 17 00:00:00 2001 From: imp2002 Date: Sat, 10 Dec 2022 22:06:21 +0800 Subject: [PATCH] fix: fix invalid url in applications page (#1389) --- web/src/AdapterListPage.js | 2 +- web/src/ApplicationListPage.js | 4 ++-- web/src/ResourceListPage.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/AdapterListPage.js b/web/src/AdapterListPage.js index 0aba20dd..96f3ebb7 100644 --- a/web/src/AdapterListPage.js +++ b/web/src/AdapterListPage.js @@ -87,7 +87,7 @@ class AdapterListPage extends BaseListPage { ...this.getColumnSearchProps("name"), render: (text, record, index) => { return ( - + {text} ); diff --git a/web/src/ApplicationListPage.js b/web/src/ApplicationListPage.js index d29de8bd..0f8ab339 100644 --- a/web/src/ApplicationListPage.js +++ b/web/src/ApplicationListPage.js @@ -197,9 +197,9 @@ class ApplicationListPage extends BaseListPage {
-
diff --git a/web/src/ResourceListPage.js b/web/src/ResourceListPage.js index 26f700f5..3492e824 100644 --- a/web/src/ResourceListPage.js +++ b/web/src/ResourceListPage.js @@ -113,7 +113,7 @@ class ResourceListPage extends BaseListPage { ...this.getColumnSearchProps("application"), render: (text, record, index) => { return ( - + {text} );