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 2020/07/13 09:07:58 UTC

[incubator-apisix-dashboard] branch master updated: fix(Route): update desc for status code

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/incubator-apisix-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new 0980036  fix(Route): update desc for status code
0980036 is described below

commit 09800361f6792ce73db4f160fe9e145c91e00349
Author: juzhiyuan <ju...@apache.org>
AuthorDate: Mon Jul 13 17:05:06 2020 +0800

    fix(Route): update desc for status code
---
 src/pages/Route/components/Step1/RequestConfigView.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/pages/Route/components/Step1/RequestConfigView.tsx b/src/pages/Route/components/Step1/RequestConfigView.tsx
index 655aa21..25b076a 100644
--- a/src/pages/Route/components/Step1/RequestConfigView.tsx
+++ b/src/pages/Route/components/Step1/RequestConfigView.tsx
@@ -202,8 +202,8 @@ const RequestConfigView: React.FC<Props> = ({ data, disabled, onChange }) => {
             <Col span={10}>
               <Form.Item name="redirectCode" rules={[{required: true}]}>
                 <Select disabled={disabled}>
-                  <Select.Option value={301}>301(临时的重定向)</Select.Option>
-                  <Select.Option value={302}>302(永久的重定向)</Select.Option>
+                  <Select.Option value={301}>301(永久重定向)</Select.Option>
+                  <Select.Option value={302}>302(临时重定向)</Select.Option>
                 </Select>
               </Form.Item>
             </Col>