From 44aaea5aaeb4ef112658b5eaed4c7fd11e4e96c7 Mon Sep 17 00:00:00 2001 From: Tobias Messner Date: Wed, 9 Oct 2024 10:18:49 +0200 Subject: [PATCH] docs: Fix a bunch of minor grammar issues and typos --- .github/dependabot.yml | 2 +- README.md | 6 +++--- .../sessions/operators/models.py | 2 +- backend/tests/sessions/test_session_routes.py | 2 +- .../admin/authentication/keycloak/index.md | 2 +- docs/docs/admin/cli.md | 2 +- docs/docs/admin/installation.md | 10 +++++----- .../docs/admin/monitoring/logging/explorer.md | 4 ++-- docs/docs/admin/settings/model-sources/git.md | 8 ++++---- .../admin/settings/tools/pure_variants.md | 2 +- docs/docs/admin/teamforcapella/migration.md | 2 +- docs/docs/admin/tools/configuration.md | 5 ++--- docs/docs/admin/uninstallation.md | 2 +- docs/docs/api/index.md | 2 +- docs/docs/development/backend/extensions.md | 2 +- docs/docs/development/docs.md | 4 ++-- .../frontend/responsive-design/mobile-view.md | 2 +- docs/docs/development/index.md | 2 +- docs/docs/development/k8s/resources.md | 2 +- docs/docs/development/pull_requests.md | 2 +- docs/docs/user/index.md | 2 +- docs/docs/user/projects/add-user/index.md | 2 +- docs/docs/user/projects/create/index.md | 2 +- docs/docs/user/projects/models/create.md | 4 ++-- .../models/diagrams/setup_diagram_cache.md | 2 +- docs/docs/user/tools/capella/git/index.md | 20 +++++++++---------- docs/docs/user/tools/capella/introduction.md | 2 +- .../user/tools/capella/migration/index.md | 2 +- .../capella/teamforcapella/connect/index.md | 2 +- .../model-complexity-badge.docs.mdx | 7 ++++--- .../active-sessions.component.docs.mdx | 7 ++++--- helm/values.yaml | 2 +- 32 files changed, 60 insertions(+), 59 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1109c07fdd..16e85d7fbf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -26,7 +26,7 @@ updates: directory: '/' schedule: interval: 'daily' - # Github Actions + # GitHub Actions - package-ecosystem: 'github-actions' directory: '/' schedule: diff --git a/README.md b/README.md index f40532d781..33fa59e1ad 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ options can be changed at any time later: > Currently, we only provide amd64 images. If you want to run the > application on arm64, you need to build the images yourself (option 3 or 4). -1. Fetch management portal and session images from Github (without +1. Fetch management portal and session images from GitHub (without TeamForCapella support). This option is recommended for the first deployment. @@ -120,7 +120,7 @@ options can be changed at any time later: DEVELOPMENT_MODE=1 make helm-deploy open ``` -1. Build management portal images and fetch session images from Github (without +1. Build management portal images and fetch session images from GitHub (without initial TeamForCapella support) ```zsh @@ -171,7 +171,7 @@ dashboard, you can run the following command: make dashboard ``` -If something goes wrong, please open an issue on Github. +If something goes wrong, please open an issue on GitHub. To clean up the environment, run: diff --git a/backend/capellacollab/sessions/operators/models.py b/backend/capellacollab/sessions/operators/models.py index 136d2c462e..7b0b0e89c5 100644 --- a/backend/capellacollab/sessions/operators/models.py +++ b/backend/capellacollab/sessions/operators/models.py @@ -23,7 +23,7 @@ class SecretReferenceVolume(Volume): @dataclasses.dataclass class PersistentVolume(Volume): - """An persistent volume that is mounted into the container.""" + """A persistent volume that is mounted into the container.""" volume_name: str diff --git a/backend/tests/sessions/test_session_routes.py b/backend/tests/sessions/test_session_routes.py index cd763c2ebc..e9bca99ebf 100644 --- a/backend/tests/sessions/test_session_routes.py +++ b/backend/tests/sessions/test_session_routes.py @@ -197,7 +197,7 @@ def test_validate_session_token_without_token_cookie( client: testclient.TestClient, session: sessions_models.DatabaseSession, ): - """Test that an request without cookie is declined during validation""" + """Test that a request without a cookie is declined during validation""" response = client.post(f"/api/v1/sessions/{session.id}/tokens/validate") diff --git a/docs/docs/admin/authentication/keycloak/index.md b/docs/docs/admin/authentication/keycloak/index.md index d349734730..7ba59095fa 100644 --- a/docs/docs/admin/authentication/keycloak/index.md +++ b/docs/docs/admin/authentication/keycloak/index.md @@ -35,7 +35,7 @@ required for the following steps. ![Create client - Step 1](./create-client-1.png) -1. In **Capability config** modify the the default values as follows: +1. In **Capability config** modify the default values as follows: 1. Enable **Client Authentication** 1. Disable **Direct access grants** diff --git a/docs/docs/admin/cli.md b/docs/docs/admin/cli.md index cfbaf80fa0..148fa114d2 100644 --- a/docs/docs/admin/cli.md +++ b/docs/docs/admin/cli.md @@ -6,7 +6,7 @@ The Collaboration Manager repository contains a few tools that may come in handy when you're an administrator of a Collaboration Manager setup. -The CLI (Command Line Interface) tool allows you to backup and restore user's +The CLI (Command Line Interface) tool allows you to back up and restore user's workspaces. For the tools to work you'll need access to the Kubernetes cluster the diff --git a/docs/docs/admin/installation.md b/docs/docs/admin/installation.md index 987b96d97c..83ab11e91e 100644 --- a/docs/docs/admin/installation.md +++ b/docs/docs/admin/installation.md @@ -97,8 +97,8 @@ future. The minimum required resources are 3 [Kubernetes CPU cores](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu) and around 2,5GiB of memory for the management platform. Depending on the load, -the instance can scale up and is limited to 10 Kubernetes CPU cores cores and -~8GiB of memory. +the instance can scale up and is limited to 10 Kubernetes CPU cores and ~8GiB +of memory. Each session requires a minimum of 0.4 Kubernetes CPU cores and 1.6Gi of memory. A session can scale up until it reaches 2 Kubernetes CPU cores and 6Gi @@ -155,10 +155,10 @@ Verify that `helm` is working by executing the command: helm version ``` -## Step 5: Clone the Github Repository +## Step 5: Clone the GitHub Repository Navigate to a persistent location on your server, e.g. `/opt`. Then clone the -Github repository by running: +GitHub repository by running: ```zsh git clone https://github.com/DSD-DBS/capella-collab-manager.git @@ -214,7 +214,7 @@ have to change it to a more secure password: 1. Open and login with `guacadmin` / `guacadmin`. -1. Click on the `guacadmin` user at the top-right corner of the screen, then +1. Click on the `guacadmin` user in the top-right corner of the screen, then select "Settings". 1. Select the tab "Preferences" 1. In the "Change password" section, enter `guacadmin` as current password. diff --git a/docs/docs/admin/monitoring/logging/explorer.md b/docs/docs/admin/monitoring/logging/explorer.md index 69fe3fd985..229b1ada78 100644 --- a/docs/docs/admin/monitoring/logging/explorer.md +++ b/docs/docs/admin/monitoring/logging/explorer.md @@ -102,8 +102,8 @@ the log level **INFO** and the HTTP method **POST**. ![Operations Example](./operations_example.png){:style="width:500px"} Theoretically, you could achieve the same result by changing two line contains -operations, but it's inefficient and you have to use the exact format as in the -log message. +operations, but it's inefficient, and you have to use the exact format as in +the log message. ![Operations Example without Logfmt](./operations_example_bad.png){:style="width:400px"} diff --git a/docs/docs/admin/settings/model-sources/git.md b/docs/docs/admin/settings/model-sources/git.md index 36f926cefd..c74dd4d58a 100644 --- a/docs/docs/admin/settings/model-sources/git.md +++ b/docs/docs/admin/settings/model-sources/git.md @@ -30,8 +30,8 @@ Gitlab, are not available. - **Gitlab**: Only works with [Gitlab](https://about.gitlab.com/) instances (self-hosted / SaaS). With Gitlab, the diagram cache integration can be used. - - **Github**: Works with the public [Github](https://github.com/) - instance. With Github, the diagram cache integration can be used. + - **GitHub**: Works with the public [GitHub](https://github.com/) + instance. With GitHub, the diagram cache integration can be used. 1. **Name**: Any name to identify the instance 1. **Instance base URL**: The base URL of the instance, e.g., `https://gitlab.com`. For more information, see @@ -40,8 +40,8 @@ Gitlab, are not available. - **Gitlab**: The API URL to the [Gitlab REST API](https://docs.gitlab.com/ee/api/rest/). In most of the cases: `{base_url}/api/v4`, e.g., `https://gitlab.com/api/v4`. - - **Github**: The API URL to the - [Github REST API](https://docs.github.com/en/rest?apiVersion=2022-11-28). + - **GitHub**: The API URL to the + [GitHub REST API](https://docs.github.com/en/rest?apiVersion=2022-11-28). The url is `https://api.github.com`. !!! warning diff --git a/docs/docs/admin/settings/tools/pure_variants.md b/docs/docs/admin/settings/tools/pure_variants.md index c18e56ad96..4c2b989464 100644 --- a/docs/docs/admin/settings/tools/pure_variants.md +++ b/docs/docs/admin/settings/tools/pure_variants.md @@ -40,7 +40,7 @@ 1. Click on `Create` 1. Enable the `pure::variants` integration and additional integrations if applicable. -1. Add tool versions (if using `Capella + pure::variants`, please use the the +1. Add tool versions (if using `Capella + pure::variants`, please use the Capella version for a proper matching with the TeamForCapella server version.) 1. Add tool natures if applicable. If not tool nature is applicable, use a diff --git a/docs/docs/admin/teamforcapella/migration.md b/docs/docs/admin/teamforcapella/migration.md index 5d810b6b20..09ba12e7ef 100644 --- a/docs/docs/admin/teamforcapella/migration.md +++ b/docs/docs/admin/teamforcapella/migration.md @@ -39,7 +39,7 @@ 1. Create a new session with the new Capella version. 1. In your persistent workspace, execute the following steps: - 1. Right click on the model in your workspace. + 1. Right-click on the model in your workspace. 1. Select `Migration` and `Migrate Project toward current version` ![Migrate Capella model](../../user/tools/capella/migration/migrate-capella-model.png) 1. A backup is not required as the latest version should still be available diff --git a/docs/docs/admin/tools/configuration.md b/docs/docs/admin/tools/configuration.md index 77659c9e83..9194898896 100644 --- a/docs/docs/admin/tools/configuration.md +++ b/docs/docs/admin/tools/configuration.md @@ -175,7 +175,7 @@ variables can be used by the tool: In addition, the following variables are mounted if the TeamForCapella integration is enabled for the tool and the session type is `persistent`. -For a explanation of those variables, refer to the +For an explanation of those variables, refer to the [Capella Docker images documentation](https://dsd-dbs.github.io/capella-dockerimages/capella/t4c/base/#run-the-container). @@ -315,8 +315,7 @@ session tokens. ## Configuration examples -To help you configuring your tools, we provide some examples for the tools, -which we provide as part of our +To help you configure your tools, we provide some examples as part of our [Capella Docker images repository](https://github.com/DSD-DBS/capella-dockerimages) === "Capella/Papyrus/Eclipse" diff --git a/docs/docs/admin/uninstallation.md b/docs/docs/admin/uninstallation.md index fd34548506..4e5d57d488 100644 --- a/docs/docs/admin/uninstallation.md +++ b/docs/docs/admin/uninstallation.md @@ -8,7 +8,7 @@ We're sorry to see you go :sob:
If you have any suggestions for us to improve, please share them with us. Either privately via or via a -[Github issue](https://github.com/DSD-DBS/capella-collab-manager/issues). +[GitHub issue](https://github.com/DSD-DBS/capella-collab-manager/issues). 1. If you want to uninstall the management portal, you can run the following comment: diff --git a/docs/docs/api/index.md b/docs/docs/api/index.md index db4b0286a4..ef75ce625f 100644 --- a/docs/docs/api/index.md +++ b/docs/docs/api/index.md @@ -103,7 +103,7 @@ Another example is working with the diagram cache of py-capellambse. The implementation of the Capella modelling tool `capellambse` uses Python and lets you read and write models. For more information have a look at the [documentation](https://dsd-dbs.github.io/py-capellambse/) or the -[Github repository](https://github.com/DSD-DBS/py-capellambse). +[GitHub repository](https://github.com/DSD-DBS/py-capellambse). ```python import capellambse diff --git a/docs/docs/development/backend/extensions.md b/docs/docs/development/backend/extensions.md index 2586d32bf7..6b6ae245de 100644 --- a/docs/docs/development/backend/extensions.md +++ b/docs/docs/development/backend/extensions.md @@ -7,7 +7,7 @@ In order to make the whole backend more consistent, it is divided into different modules. This is to ensure that these can be outsourced without major impacts and that other modules can be added as "plugins". -A extension has the following structure:
+An extension has the following structure:
```bash extension diff --git a/docs/docs/development/docs.md b/docs/docs/development/docs.md index 0ee5eed23b..4ae44a8a89 100644 --- a/docs/docs/development/docs.md +++ b/docs/docs/development/docs.md @@ -5,7 +5,7 @@ # Documentation -It's important to have a good and up to date documentation for the +It's important to have a good and up-to-date documentation for the Collaboration Manager. Documentation is an accessible way to share knowledge for developers, administrators and users. It can also be used by support teams to resolve issues more efficiently. @@ -24,7 +24,7 @@ source files until the `make serve` process is terminated. When writing the documentation we are using title case in the [`Chicago Manual of Style`](https://en.wikipedia.org/wiki/Title_case#Chicago_Manual_of_Style). -In addition personal names/ names of packages are written according to their +In addition, personal names/ names of packages are written according to their documentation. ### Cross-linking between pages diff --git a/docs/docs/development/frontend/responsive-design/mobile-view.md b/docs/docs/development/frontend/responsive-design/mobile-view.md index 8f67529479..1d4e748367 100644 --- a/docs/docs/development/frontend/responsive-design/mobile-view.md +++ b/docs/docs/development/frontend/responsive-design/mobile-view.md @@ -43,7 +43,7 @@ uses flexbox on devices larger than `768px`. ### Example from the application -If you want to see an code example of responsive design in the application, you +If you want to see a code example of responsive design in the application, you can check the `HeaderComponent` HTML template: [frontend/src/app/general/header/header.component.html](https://github.com/DSD-DBS/capella-collab-manager/blob/main/frontend/src/app/general/header/header.component.html). You can search for `xl:` and play around with it. diff --git a/docs/docs/development/index.md b/docs/docs/development/index.md index 8158d4258b..112b81e0ca 100644 --- a/docs/docs/development/index.md +++ b/docs/docs/development/index.md @@ -91,7 +91,7 @@ The commit messages have to follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#specification) specification. -In general, we use pre-commit hooks to enforce coding standards. To setup the +In general, we use pre-commit hooks to enforce coding standards. To set up the pre-commit hooks, please run the following commands: ```zsh diff --git a/docs/docs/development/k8s/resources.md b/docs/docs/development/k8s/resources.md index 3e15a375ff..88ae2e4e1c 100644 --- a/docs/docs/development/k8s/resources.md +++ b/docs/docs/development/k8s/resources.md @@ -3,7 +3,7 @@ ~ SPDX-License-Identifier: Apache-2.0 --> -To find out which resources are used in the cluster, you can install a the tool +To find out which resources are used in the cluster, you can install the tool [`kube-capacity`](https://github.com/robscott/kube-capacity): ```zsh diff --git a/docs/docs/development/pull_requests.md b/docs/docs/development/pull_requests.md index 271f4b23fb..3ebc21f017 100644 --- a/docs/docs/development/pull_requests.md +++ b/docs/docs/development/pull_requests.md @@ -9,7 +9,7 @@ To reduce the burden on our maintainers, all PRs must meet the following criteria before we start the review process. If the acceptance criteria are not met, please mark the PR as a draft. -- All Github Action pipelines have to be green. If in individual cases the +- All GitHub Action pipelines have to be green. If in individual cases the pipeline cannot be fixed independently or the pipeline failure is unrelated to the PR, then this should be justified in a comment in the pull request. - The adapted code was sensibly covered with tests. Codecov will indicate the diff --git a/docs/docs/user/index.md b/docs/docs/user/index.md index 0be03e8014..cb71ab14f8 100644 --- a/docs/docs/user/index.md +++ b/docs/docs/user/index.md @@ -128,6 +128,6 @@ sections: If you don't find answer to your question on this documentation site please consider opening an -[issue on Github](https://github.com/DSD-DBS/capella-collab-manager/issues) or +[issue on GitHub](https://github.com/DSD-DBS/capella-collab-manager/issues) or extending the documentation with your own contribution via a [pull request](https://github.com/DSD-DBS/capella-collab-manager/pulls). diff --git a/docs/docs/user/projects/add-user/index.md b/docs/docs/user/projects/add-user/index.md index f8c57448dc..6eaf3121e5 100644 --- a/docs/docs/user/projects/add-user/index.md +++ b/docs/docs/user/projects/add-user/index.md @@ -31,7 +31,7 @@ 1. Select your project in the project overview. 1. On the right side you should now see user management options: ![User management](./manage-users.png) -1. Select the user you want do modify:
+1. Select the user you want to modify:
![User modification](./modify-user.png) You can select from the following options: diff --git a/docs/docs/user/projects/create/index.md b/docs/docs/user/projects/create/index.md index 416a14f94e..7bfeb04a7b 100644 --- a/docs/docs/user/projects/create/index.md +++ b/docs/docs/user/projects/create/index.md @@ -30,5 +30,5 @@ can skip this step. Users can be added later at any time. ## Step 3: Add Models -Please follow the model creation instructions to setup a model: +Please follow the model creation instructions to set up a model: [Create a model](../models/create.md) diff --git a/docs/docs/user/projects/models/create.md b/docs/docs/user/projects/models/create.md index 7ec160d7cb..b34dcc1164 100644 --- a/docs/docs/user/projects/models/create.md +++ b/docs/docs/user/projects/models/create.md @@ -44,7 +44,7 @@ following options: If you chose option 1 or 2 in the last step, please read the `Link existing Git repository` part of this step. If you chose option 3 or 4, -you can should read the `Link existing T4C repository` part. +you should read the `Link existing T4C repository` part. ### Step 3.1 Link Existing Git Repository @@ -105,7 +105,7 @@ This is an important step. Here, you can select the version and the model nature of your tool. If you don't select any version, the functionality will be restricted. You will not be -able to setup backups or create read-only sessions. +able to set up backups or create read-only sessions. If suitable for your project, select one of the latest versions of Capella. Older versions may be removed in the future. Make sure your model is up to date diff --git a/docs/docs/user/projects/models/diagrams/setup_diagram_cache.md b/docs/docs/user/projects/models/diagrams/setup_diagram_cache.md index 6fc5fb7d40..37c0780b4b 100644 --- a/docs/docs/user/projects/models/diagrams/setup_diagram_cache.md +++ b/docs/docs/user/projects/models/diagrams/setup_diagram_cache.md @@ -24,7 +24,7 @@ - One pipeline in the linked Git repository should not contain more than 20 jobs. 1. To set up the diagram cache, your administrator needs to add the Git API - URL of your Gitlab or Github instance to the collab manager. More + URL of your Gitlab or GitHub instance to the collab manager. More information [here](../../../../admin/settings/model-sources/git.md). 1. Link a Git repository to the model, for which you'd like to see the diagram cache. diff --git a/docs/docs/user/tools/capella/git/index.md b/docs/docs/user/tools/capella/git/index.md index 6d44129a87..79a31be5d9 100644 --- a/docs/docs/user/tools/capella/git/index.md +++ b/docs/docs/user/tools/capella/git/index.md @@ -6,7 +6,7 @@ # Working with Git In this guide we explain how to use Git via Eclipse. When using Git we make -changes _locally_ and push them to a _remote_ (Gitlab or Github mainly) +changes _locally_ and push them to a _remote_ (Gitlab or GitHub mainly) repository. Here we explain how to get made changes to the remote repository so that collegues can see and review them. @@ -41,21 +41,21 @@ locally. ## Switch Branches To collaborate it might be useful to work on different branches. Therefore, -there are two ways to switch branches (to checkout existing ones or to create a -new one). +there are two ways to switch branches (to check out existing ones or to create +a new one). -Either you right click on the project name in the lower right corner, go to +Either you right-click on the project name in the lower right corner, go to "Switch to" and then e.g. "New Branch" ![Step 4: Search for View](screenshots/switch-branch-v1.png) -or you can right click on the project name in the project tree and then click +or you can right-click on the project name in the project tree and then click "Team"> "Switch to" > "New Branch". ![Step 5: Search for View](screenshots/switch-branch-v2.png) In order to make the changes visible in your project tree and to see on which -branch you are currently working on right click on the project name > "Close +branch you are currently working on right-click on the project name > "Close Project" and then open the project again. ## Prepare to Commit - Stage Changes @@ -97,7 +97,7 @@ changes (2). ![Step 7: Search for View](screenshots/staged-changes.png) -If you already committed your changes you can right click on the Project > +If you already committed your changes you can right-click on the Project > "Team" > "Push to Origin" in order to push your changes to the remote. If you have not commited yet and want to publish your changes and to share them @@ -179,7 +179,7 @@ as they can not be merged in the seperate layers. In the synthesis view you can see the number of changes that happened. If you click on a specific change you can see in the Details (1) and also marked in blue on both models what changed and possibly how the current status in both -models is. Then you can right click on the change in the synthesis view and +models is. Then you can right-click on the change in the synthesis view and click "Apply change(s)" (2) and you can click "Ok" then. Afterwards make sure to Ctrl+S or File > Save to save the change made. @@ -260,8 +260,8 @@ option. ![Step 10: Git Create Intermediate Branch](screenshots/create-merge-branch.png) After pushing your changes to the remote Git repository, open the remote -project on Gitlab or Github. Then open a Merge request (Gitlab) or Pull request -(Github) respectively and try merging your "merge-branch-name" branch into main +project on Gitlab or GitHub. Then open a Merge request (Gitlab) or Pull request +(GitHub) respectively and try merging your "merge-branch-name" branch into main (or the branch you wanted to push on before). You will now see whether the Merge request/ Pull request can be merged diff --git a/docs/docs/user/tools/capella/introduction.md b/docs/docs/user/tools/capella/introduction.md index 1bb5b28ebe..db8d3fbdab 100644 --- a/docs/docs/user/tools/capella/introduction.md +++ b/docs/docs/user/tools/capella/introduction.md @@ -21,7 +21,7 @@ A very nice set of videos, highly recommended to watch: You may find more Capella - related videos on the official channel: [EclipseCapella](https://www.youtube.com/c/EclipseCapella/videos) -Also you can try out this +Also, you can try out this [Capella Tutorial](https://esd.sutd.edu.sg/40014-capella-tutorial/index.html) ## More Advanced Topics diff --git a/docs/docs/user/tools/capella/migration/index.md b/docs/docs/user/tools/capella/migration/index.md index 78704a866c..da20501c1d 100644 --- a/docs/docs/user/tools/capella/migration/index.md +++ b/docs/docs/user/tools/capella/migration/index.md @@ -23,7 +23,7 @@ [Change model metadata](../../../projects/models/metadata.md). 1. Create a new session with the new Capella version. 1. In your persistent workspace loaded, execute the following steps: - 1. Right click on the model in your workspace. + 1. Right-click on the model in your workspace. 1. Select `Migration` and `Migrate Project toward current version` ![Migrate Capella model](./migrate-capella-model.png) 1. A backup is recommended. diff --git a/docs/docs/user/tools/capella/teamforcapella/connect/index.md b/docs/docs/user/tools/capella/teamforcapella/connect/index.md index ab8d4dfc77..eb71d206fb 100644 --- a/docs/docs/user/tools/capella/teamforcapella/connect/index.md +++ b/docs/docs/user/tools/capella/teamforcapella/connect/index.md @@ -39,7 +39,7 @@ model lead (usually this role is allocated to lead architects / area owners). ![Connect to remote model](screenshots/step_2.png) -1. In the drop down select the repository you like to work on. In most cases +1. In the drop-down select the repository you like to work on. In most cases the repository and project name should match. 1. Click on `Test connection` and enter you username and the session token you received in the first step. diff --git a/frontend/src/app/projects/project-detail/model-overview/model-complexity-badge/model-complexity-badge.docs.mdx b/frontend/src/app/projects/project-detail/model-overview/model-complexity-badge/model-complexity-badge.docs.mdx index 6d300d241f..1e5f008be7 100644 --- a/frontend/src/app/projects/project-detail/model-overview/model-complexity-badge/model-complexity-badge.docs.mdx +++ b/frontend/src/app/projects/project-detail/model-overview/model-complexity-badge/model-complexity-badge.docs.mdx @@ -3,8 +3,9 @@ SPDX-License-Identifier: Apache-2.0 */} -import * as ModelBadge from "./model-complexity-badge.stories.ts"; -import {Meta, Title, Story, Canvas, Unstyled} from "@storybook/blocks"; + +import * as ModelBadge from './model-complexity-badge.stories.ts' +import { Meta, Story, Title, Unstyled } from '@storybook/blocks' @@ -29,7 +30,7 @@ The model badge was loaded successfully: -The model badge is not set up. In this case, there is an link to the documentation: +The model badge is not set up. In this case, there is a link to the documentation:
diff --git a/frontend/src/app/sessions/user-sessions-wrapper/active-sessions/active-sessions.component.docs.mdx b/frontend/src/app/sessions/user-sessions-wrapper/active-sessions/active-sessions.component.docs.mdx index bc33340963..989f99d2ed 100644 --- a/frontend/src/app/sessions/user-sessions-wrapper/active-sessions/active-sessions.component.docs.mdx +++ b/frontend/src/app/sessions/user-sessions-wrapper/active-sessions/active-sessions.component.docs.mdx @@ -3,8 +3,9 @@ SPDX-License-Identifier: Apache-2.0 */} -import * as ActiveSessions from "./active-sessions.stories.ts"; -import {Meta, Title, Story, Canvas, Unstyled} from "@storybook/blocks"; + +import * as ActiveSessions from './active-sessions.stories.ts' +import { Meta, Story, Title } from '@storybook/blocks' @@ -20,7 +21,7 @@ When loading sessions, it looks like this: If there are no active sessions, it looks like this: -If the session starts successfully, it look like this: +If the session starts successfully, it looks like this: During session creation, when no error has occurred, it looks like this: diff --git a/helm/values.yaml b/helm/values.yaml index 1b1207c15c..883b0e9e6a 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -198,7 +198,7 @@ alerting: ######################################## # Activate the development mode. -# The deployment resources are reduced in the the development mode. +# The deployment resources are reduced in the development mode. development: false # Specify if you'd like to use the oauth or smtp mocks