From d9cd3adef119ef3e7c20b0b75a9d10d5ce4a2fd8 Mon Sep 17 00:00:00 2001 From: JSC Date: Thu, 10 Jul 2025 23:07:36 +0200 Subject: [PATCH] fix: Update Layout component to center sidebar items and add scan_job_id to Vulnerability interface --- src/components/Layout.tsx | 2 +- src/lib/api.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9784963..2f83c8f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -38,7 +38,7 @@ export function Layout({ children }: LayoutProps) { {/* Sidebar */}
-
+

GitLab Docker Tracker diff --git a/src/lib/api.ts b/src/lib/api.ts index 631c6b3..fcf43a5 100644 --- a/src/lib/api.ts +++ b/src/lib/api.ts @@ -28,6 +28,7 @@ export interface Image { export interface Vulnerability { id: number image_id: number + scan_job_id: number | null vulnerability_id: string severity: string title: string | null