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

doc: fix typo #1004

Merged
merged 1 commit into from
Dec 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This release mainly refactors the dashboard, omitting MySQL, improve test cases.
- Support log save to local file.
- Optimize the deployment process.
- Add E2E test examples to the frontend. [#619](https://github.com/apache/apisix-dashboard/pull/619)
- Fix the Promethues plugin updating incorrect values when updating routes. [#666](https://github.com/apache/apisix-dashboard/pull/666)
- Fix the Prometheus plugin updating incorrect values when updating routes. [#666](https://github.com/apache/apisix-dashboard/pull/666)
- Fix page display exceptions when the Redirect option is selected as Enable HTTPS in the Route page. [#692](https://github.com/apache/apisix-dashboard/pull/692)

For more changes, please refer to [Milestone](https://github.com/apache/apisix-dashboard/milestone/4)
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
- 支持日志保存到本地文件。
- 优化部署流程。
- 前端增加 E2E 测试例子。[#619](https://github.com/apache/apisix-dashboard/pull/619)
- 修复 Promethues 插件在更新路由时更新错误值的问题。[#666](https://github.com/apache/apisix-dashboard/pull/666)
- 修复 Prometheus 插件在更新路由时更新错误值的问题。[#666](https://github.com/apache/apisix-dashboard/pull/666)
- 修复在路由页面中重定向选项选择为 启用HTTPS 时页面显示异常的问题。[#692](https://github.com/apache/apisix-dashboard/pull/692)


Expand Down
2 changes: 1 addition & 1 deletion api/conf/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2307,7 +2307,7 @@
"properties": {
"allow_credential": {
"default": false,
"description": "allow client append crendential. according to CORS specification,if you set this option to 'true', you can not use '*' for other options.",
"description": "allow client append credential. according to CORS specification, if you set this option to 'true', you can not use '*' for other options.",
"type": "boolean"
},
"allow_headers": {
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/Plugin/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const getList = async () => {
};

/**
* cache pulgin schema by schemaType
* cache plugin schema by schemaType
* default schema is route for plugins in route
* support schema: consumer for plugins in consumer
*/
Expand Down