Merge pull request #2744 from greenie-msft/fix_broken_middleware_component_links

Fix links to broken middleware components
This commit is contained in:
greenie-msft 2022-08-24 11:11:53 -07:00 committed by GitHub
commit d01d8c1cd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
version: v1 version: v1
description: Restricts the maximum number of allowed HTTP requests per second description: Restricts the maximum number of allowed HTTP requests per second
- component: OAuth2 Authorization Grant flow - component: OAuth2 Authorization Grant flow
link: https://tools.ietf.org/html/rfc6749#section-4.1 link: https://www.rfc-editor.org/rfc/rfc6749#section-4.1
state: Alpha state: Alpha
version: v1 version: v1
description: Enables the [OAuth2 Authorization Grant flow](https://tools.ietf.org/html/rfc6749#section-4.1) on a Web API description: Enables the [OAuth2 Authorization Grant flow](https://tools.ietf.org/html/rfc6749#section-4.1) on a Web API
@ -24,22 +24,22 @@
version: v1 version: v1
description: Applies [Rego/OPA Policies](https://www.openpolicyagent.org/) to incoming Dapr HTTP requests description: Applies [Rego/OPA Policies](https://www.openpolicyagent.org/) to incoming Dapr HTTP requests
- component: Sentinel - component: Sentinel
link: middleware-sentinel link: /reference/components-reference/supported-middleware/middleware-sentinel
state: Alpha state: Alpha
version: v1 version: v1
description: Use Sentinel middleware to guarantee the reliability and resiliency of your application description: Use Sentinel middleware to guarantee the reliability and resiliency of your application
- component: RouterChecker - component: RouterChecker
link: middleware-routerchecker link: /reference/components-reference/supported-middleware/middleware-routerchecker
state: Alpha state: Alpha
version: v1 version: v1
description: Use RouterChecker middleware to block invalid http request routing description: Use RouterChecker middleware to block invalid http request routing
- component: Uppercase - component: Uppercase
link: middleware-uppercase link: /reference/components-reference/supported-middleware/middleware-uppercase
state: Stable state: Stable
version: v1 version: v1
description: Converts the body of the request to uppercase letters (demo) description: Converts the body of the request to uppercase letters (demo)
- component: WASM - component: WASM
link: middleware-wasm link: /reference/components-reference/supported-middleware/middleware-wasm
state: Alpha state: Alpha
version: v1 version: v1
description: Use WASM middleware in your HTTP pipeline description: Use WASM middleware in your HTTP pipeline

View File

@ -13,7 +13,7 @@
</tr> </tr>
{{ range sort $components "component" }} {{ range sort $components "component" }}
<tr> <tr>
<td><a href="/reference/components-reference/supported-middleware/{{ .link }}/" }}>{{ .component <td><a href="{{ .link }}/" }}>{{ .component
}}</a> }}</a>
</td> </td>
<td>{{ .description | markdownify}}</td> <td>{{ .description | markdownify}}</td>