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

fix: documentation title on start page #1996

Merged
merged 1 commit into from
Oct 4, 2024
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 .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- main
- chore/deploy-docs
- chore/documentation_title

permissions: read-all

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
template: home.html
title: Material for MkDocs
title: SecObserve Documentation
---
6 changes: 3 additions & 3 deletions docs/usage/import_observations.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ A flowchart visualizes the import algorithm:

```mermaid
flowchart TD
read(Read observations for a vulnerability check) --> all_observations{For all observations\nof this vulnerability check}
all_observations -- with observation --> identity{Identical observation\nin the same\nvulnerability check?}
read(Read observations for a vulnerability check) --> all_observations{For all observations of this vulnerability check}
all_observations -- with observation --> identity{Identical observation in the same vulnerability check?}
subgraph Create or update
identity -- yes --> update(Update existing observation)
identity -- no --> create(Create new observation)
end
all_observations -- finished ----> resolved(Set status to `Resolved` for all untouched observations of this vulnerability check)
all_observations -- finished ----> resolved(Set status to **Resolved** for all untouched observations of this vulnerability check)

```

Expand Down