You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2022/01/04 01:26:20 UTC

[apisix-dashboard] branch master updated: chore(upstream): remove default port for upstream health check (#2278)

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

juzhiyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new d41ee1e  chore(upstream): remove default port for upstream health check  (#2278)
d41ee1e is described below

commit d41ee1e1b89c765b0819d8131f659c41ff988d30
Author: Yu.Bozhong <y....@foxmail.com>
AuthorDate: Tue Jan 4 09:26:12 2022 +0800

    chore(upstream): remove default port for upstream health check  (#2278)
---
 web/src/components/Upstream/components/active-check/Port.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web/src/components/Upstream/components/active-check/Port.tsx b/web/src/components/Upstream/components/active-check/Port.tsx
index a2d3043..e9069b0 100644
--- a/web/src/components/Upstream/components/active-check/Port.tsx
+++ b/web/src/components/Upstream/components/active-check/Port.tsx
@@ -26,7 +26,7 @@ const Component: React.FC<Props> = ({ readonly }) => {
   const { formatMessage } = useIntl();
   return (
     <Form.Item label={formatMessage({ id: 'component.upstream.fields.checks.active.port' })}>
-      <Form.Item name={['checks', 'active', 'port']} noStyle initialValue={80}>
+      <Form.Item name={['checks', 'active', 'port']} noStyle>
         <InputNumber
           placeholder={formatMessage({
             id: 'component.upstream.fields.checks.active.port',