1 Commits

Author SHA1 Message Date
Sebastian Seedorf
5c72559e8e fix: remove misleading (NP) suffix from Red column header 2026-06-05 13:01:15 +02:00
3 changed files with 1 additions and 40 deletions

View File

@@ -1,38 +0,0 @@
name: PR Build
on:
pull_request:
branches:
- main
env:
IMAGE_PR: git.sebse.de/${{ github.repository }}
IMAGE_MIGRATE_PR: git.sebse.de/${{ github.repository }}-migrate
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build app
uses: docker/build-push-action@v5
with:
context: ./web
push: false
tags: ${{ env.IMAGE_PR }}:pr-${{ github.event.pull_request.head.sha }}
cache-from: type=registry,ref=${{ env.IMAGE_PR }}:latest
- name: Build migrate
uses: docker/build-push-action@v5
with:
context: ./web
file: ./web/Dockerfile.migrate
push: false
tags: ${{ env.IMAGE_MIGRATE_PR }}:pr-${{ github.event.pull_request.head.sha }}
cache-from: type=registry,ref=${{ env.IMAGE_MIGRATE_PR }}:latest

View File

@@ -42,7 +42,7 @@ export default function TableViz({ config, rows, onEdit, onDelete }: Props) {
<th className="text-right px-2 py-1 text-green-400">Green</th>
)}
{config.signal_type !== 'green' && (
<th className="text-right px-2 py-1 text-red-400">Red (NP)</th>
<th className="text-right px-2 py-1 text-red-400">Red</th>
)}
</tr>
</thead>

1
web/package-lock.json generated
View File

@@ -1593,7 +1593,6 @@
"integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@eslint-community/eslint-utils": "^4.9.1",
"@typescript-eslint/scope-manager": "8.60.1",