Merge pull request #14283 from backstage/freben/vocab

just getting rid of vale warnings
This commit is contained in:
Fredrik Adelöw
2022-10-22 20:03:49 +01:00
committed by GitHub
24 changed files with 133 additions and 108 deletions
+3 -3
View File
@@ -91,9 +91,9 @@ export AUTH_GITLAB_CLIENT_SECRET=x
Add a new Okta application using the following URI conventions:
Login redirect URI's: `http://localhost:7007/api/auth/okta/handler/frame`
Logout redirect URI's: `http://localhost:7007/api/auth/okta/logout`
Initiate login URI's: `http://localhost:7007/api/auth/okta/start`
Login redirect URIs: `http://localhost:7007/api/auth/okta/handler/frame`
Logout redirect URIs: `http://localhost:7007/api/auth/okta/logout`
Initiate login URIs: `http://localhost:7007/api/auth/okta/start`
Then configure the following environment variables to be used in the `app-config.yaml` file:
+1 -1
View File
@@ -136,7 +136,7 @@ For showing cost breakdowns you can define a map of cloud products. They must be
You can optionally supply a product `icon` to display in Cost Insights navigation. See the [type file](https://github.com/backstage/backstage/blob/master/plugins/cost-insights/src/types/Icon.ts) for supported types and Material UI icon [mappings](https://github.com/backstage/backstage/blob/master/plugins/cost-insights/src/utils/navigation.tsx).
**Note:** Product keys should be unique and camelCased. Backstage does not support underscores in configuration keys.
**Note:** Product keys should be unique and on `camelCase` form. Backstage does not support underscores in configuration keys.
```yaml
## ./app-config.yaml
+1 -1
View File
@@ -29,7 +29,7 @@ proxy:
Authorization: 'Api-Token ${DYNATRACE_ACCESS_TOKEN}'
```
It also requires a baseUrl for rendering links to problems in the table like so:
It also requires a `baseUrl` for rendering links to problems in the table like so:
```yaml
dynatrace:
+1 -1
View File
@@ -37,7 +37,7 @@ Before you are able to start index stack overflow questions to search, you need
When you have your `packages/backend/src/plugins/search.ts` file ready to make modifications, add the following code snippet to add the `StackOverflowQuestionsCollatorFactory`. Note that you can modify the `requestParams`.
> Note: if your baseUrl is set to the external stack overflow api `https://api.stackexchange.com/2.2`, you can find optional and required parameters under the official API documentation under [`Usage of /questions GET`](https://api.stackexchange.com/docs/questions)
> Note: if your `baseUrl` is set to the external stack overflow api `https://api.stackexchange.com/2.2`, you can find optional and required parameters under the official API documentation under [`Usage of /questions GET`](https://api.stackexchange.com/docs/questions)
```ts
indexBuilder.addCollator({
+1 -1
View File
@@ -17,4 +17,4 @@ export const updateH1Text = (): Transformer => {
};
```
The transformers are then registered in the Reader.tsx file. They are registered in two places, one place that runs before it's attached to the actual browser DOM (preTransformers) and once after (postTransfomers). Doing modifications is faster before it's attached, but doesn't allow us to do some things, such as attaching event listeners.
The transformers are then registered in the Reader.tsx file. They are registered in two places, one place that runs before it's attached to the actual browser DOM (`preTransformer`s) and once after (`postTransformer`s). Doing modifications is faster before it's attached, but doesn't allow us to do some things, such as attaching event listeners.