Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/npm_and_yarn-9423f4c335
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian N. Kaupe <[email protected]>
  • Loading branch information
snkaupe authored Dec 4, 2024
2 parents 5e2af99 + 5e620f9 commit 73102b4
Show file tree
Hide file tree
Showing 137 changed files with 2,872 additions and 775 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ yarn-error.log

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
Expand Down
4 changes: 0 additions & 4 deletions .vscode/extensions.json

This file was deleted.

20 changes: 0 additions & 20 deletions .vscode/launch.json

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

42 changes: 0 additions & 42 deletions .vscode/tasks.json

This file was deleted.

2 changes: 1 addition & 1 deletion Devcontainerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM fedora:40

RUN dnf upgrade -y --refresh && \
dnf install -y nodejs nodejs-npm ripgrep eza fd-find jq rubygem-mustache python3 python3-dateutil && \
dnf install -y nodejs nodejs-npm ripgrep eza fd-find jq rubygem-mustache python3 python3-dateutil docker && \
dnf clean all && \
npm install -g @angular/cli

3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"src/assets"
],
"styles": [
"src/styles.css"
"src/styles.css",
"node_modules/ngx-toastr/toastr.css"
],
"scripts": [],
"allowedCommonJsDependencies": [
Expand Down
2 changes: 1 addition & 1 deletion html-prototype/templates/incident-log.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<article>
<h3>17.11.2023</h3>
<article class="incident">
<h4><!--<span class="incident-status status-broken">ongoing</span>--><a class="text-broken" href="./incident.html">API 3 - Service unreachable</a></h4>
<h4><a class="text-broken" href="./incident.html">API 3 - Service unreachable</a></h4>
<p class="incident-start-date">since 16.11.2023</p>
<section class="incident-update">
<h5>Identified</h5>
Expand Down
2 changes: 1 addition & 1 deletion html-prototype/templates/incident.mustache
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<article id="incident-{{ id }}" class="incident">
<h4><!--<span class="incident-api status-{{ severity }}">{{ api }}</span>--><a class="text-{{ severity }}" href="./incident.html">{{ api }} - {{ title }}</a></h4>
<h4><a class="text-{{ severity }}" href="./incident.html">{{ api }} - {{ title }}</a></h4>
{{# updates }}
<div class="incident-update">
<h5>{{ title }}</h5>
Expand Down
Loading

0 comments on commit 73102b4

Please sign in to comment.