Fix links to broken middleware components

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
This commit is contained in:
Nick Greenfield 2022-08-23 16:24:33 -07:00
parent e061ce6d7f
commit 7f63ecc588
2 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
version: v1
description: Restricts the maximum number of allowed HTTP requests per second
- 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
version: v1
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
description: Applies [Rego/OPA Policies](https://www.openpolicyagent.org/) to incoming Dapr HTTP requests
- component: Sentinel
link: middleware-sentinel
link: /reference/components-reference/supported-middleware/middleware-sentinel
state: Alpha
version: v1
description: Use Sentinel middleware to guarantee the reliability and resiliency of your application
- component: RouterChecker
link: middleware-routerchecker
link: /reference/components-reference/supported-middleware/middleware-routerchecker
state: Alpha
version: v1
description: Use RouterChecker middleware to block invalid http request routing
- component: Uppercase
link: middleware-uppercase
link: /reference/components-reference/supported-middleware/middleware-uppercase
state: Stable
version: v1
description: Converts the body of the request to uppercase letters (demo)
- component: WASM
link: middleware-wasm
link: /reference/components-reference/supported-middleware/middleware-wasm
state: Alpha
version: v1
description: Use WASM middleware in your HTTP pipeline

View File

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