Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: refactor upstream form module #1726

Merged
merged 24 commits into from
Apr 12, 2021
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1daef92
chore: make components smaller
juzhiyuan Apr 9, 2021
7387cd6
chore: update i18n & limitation
juzhiyuan Apr 9, 2021
f659b54
chore: update i18n
juzhiyuan Apr 9, 2021
1e2ac29
chore: update i18n
juzhiyuan Apr 9, 2021
7bb8cac
chore: update i18n
juzhiyuan Apr 9, 2021
ba528ff
chore: added todos
juzhiyuan Apr 9, 2021
9ab2ff5
Merge branch 'master' into juzhiyuan/feat-upstream-default
juzhiyuan Apr 9, 2021
7869009
Merge pull request #1 from apache/master
juzhiyuan Apr 9, 2021
3bc47e0
chore: refactor UpstreamForm into smaller components
juzhiyuan Apr 9, 2021
4b5fc8c
chore: added blank line
juzhiyuan Apr 9, 2021
81e1107
fix: ci unstable
LiteSun Apr 10, 2021
7d86654
Merge pull request #2 from apache/master
juzhiyuan Apr 10, 2021
ad269e1
Merge remote-tracking branch 'juzhiyuan/master' into juzhiyuan/feat-u…
juzhiyuan Apr 10, 2021
d24152d
chore: update export-route-dataset
juzhiyuan Apr 10, 2021
97f488c
chore: linter codes
juzhiyuan Apr 10, 2021
3f3045c
fix: ci
LiteSun Apr 10, 2021
4c59311
fix: ci
LiteSun Apr 10, 2021
8143999
fix: ci
LiteSun Apr 10, 2021
34c9921
fix: ci
LiteSun Apr 10, 2021
7309e4a
Merge remote-tracking branch 'sunyi/fix-fe-ci' into juzhiyuan/feat-up…
juzhiyuan Apr 10, 2021
5775332
Merge branch 'master' into juzhiyuan/feat-upstream-default
juzhiyuan Apr 11, 2021
7b7a9b2
remove unused chars
juzhiyuan Apr 11, 2021
2b26e4d
Merge branch 'master' into juzhiyuan/feat-upstream-default
juzhiyuan Apr 11, 2021
55d0c0e
feat: return health check component
juzhiyuan Apr 11, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web/cypress/fixtures/export-route-dataset.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
"weight": 1
}
],
"retries": 1,
"timeout": {
"connect": 6,
"read": 6,
"send": 6
},
"type": "roundrobin",
"scheme": "http",
"pass_host": "pass"
}
}
Expand Down Expand Up @@ -90,13 +90,13 @@
"weight": 1
}
],
"retries": 1,
"timeout": {
"connect": 6,
"read": 6,
"send": 6
},
"type": "roundrobin",
"scheme": "http",
"pass_host": "pass"
}
}
Expand Down Expand Up @@ -141,13 +141,13 @@
"weight": 1
}
],
"retries": 1,
"timeout": {
"connect": 6,
"read": 6,
"send": 6
},
"type": "roundrobin",
"scheme": "http",
"pass_host": "pass"
}
}
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/Plugin/UI/plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/
import React from 'react';
import { FormInstance } from 'antd/es/form';
import type { FormInstance } from 'antd/es/form';
import { Empty } from 'antd';
import { useIntl } from 'umi';

Expand Down
Loading