Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
66ac8a9
Add form component
AndyRae Jul 13, 2025
481140e
First urn
AndyRae Jul 13, 2025
56b903d
Fixes
AndyRae Jul 13, 2025
0615b4a
Update edit
AndyRae Jul 13, 2025
6122872
Update update
AndyRae Jul 13, 2025
b3cb37c
Add edit scan report
AndyRae Jul 13, 2025
c243cd5
Add field edit form
AndyRae Jul 13, 2025
6dda5aa
Update create scan report
AndyRae Jul 13, 2025
8f28e04
Fix create
AndyRae Jul 13, 2025
76b9f47
Change gap
AndyRae Jul 13, 2025
c82f0b1
Update react select css
AndyRae Jul 13, 2025
bede4aa
Refactor input color variables in CSS for improved consistency
AndyRae Jul 14, 2025
857ccbf
Fix underline
AndyRae Jul 14, 2025
b141f3a
Fix colours
AndyRae Jul 14, 2025
2f0c1b5
Fix buttons
AndyRae Jul 14, 2025
305635c
Temp store
AndyRae Jul 14, 2025
b2c9367
Migrate tailwind 4.0
AndyRae Jul 14, 2025
1c04bc6
Fix colours
AndyRae Jul 14, 2025
992aa42
Fixing styles
AndyRae Jul 14, 2025
5d2a9cf
Undo duplicate styles
AndyRae Jul 15, 2025
353d4d0
Fix overflow
AndyRae Jul 15, 2025
027ca34
Merge branch 'master' into feat/1075/forms/dataset
AndyRae Jul 31, 2025
aa2c8d3
Merge branch 'feat/1075/forms/dataset' into feat/1075/colours
AndyRae Jul 31, 2025
0d198b3
Fix alerts
AndyRae Jul 31, 2025
e469d96
Update CreateScanReportForm to display maximum file size for uploads
AndyRae Jul 31, 2025
fc1b20c
Refactor ScanReports page and update error alert styling in CreateSca…
AndyRae Jul 31, 2025
62de4c1
Fix text on visbility
AndyRae Jul 31, 2025
c62890a
Merge branch 'feat/1075/forms/dataset' into feat/1075/colours
AndyRae Jul 31, 2025
4bc98a6
Update DataTable component to enable horizontal overflow scrolling
AndyRae Jul 31, 2025
8b9a6f7
Remove unused safelist entries from Tailwind CSS configuration
AndyRae Jul 31, 2025
ee4b351
Fix size of toggle
AndyRae Aug 1, 2025
aaf38a3
Update small text
AndyRae Aug 1, 2025
63616a6
Stop shouting
AndyRae Aug 1, 2025
efd2f92
Merge branch 'feat/1075/forms/dataset' into feat/1075/colours
AndyRae Aug 1, 2025
c1a84fb
Merge branch 'master' into feat/1075/colours
AndyRae Aug 1, 2025
11c96e1
Merge branch 'master' into feat/1075/colours
AndyRae Aug 1, 2025
35c4f50
Merge branch 'master' into feat/1075/colours
AndyRae Aug 1, 2025
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 app/next-client-app/app/(protected)/datasets/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const columns: ColumnDef<DataSet>[] = [
<Link href={`/datasets/${id}/`}>
<Button
variant="link"
className="font-bold text-black dark:text-white"
className="font-bold"
>
{name}
</Button>
Expand Down
4 changes: 3 additions & 1 deletion app/next-client-app/app/(protected)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React from "react";
import { getServerSession } from "next-auth";
import { options } from "@/auth/options";
import { MenuBar } from "@/components/core/menubar";
import Footer from "@/components/core/footer";

export default async function ProtectedLayout({
children,
Expand All @@ -14,10 +15,11 @@ export default async function ProtectedLayout({

return (
<>
<section className="container mb-5">
<section className="container flex flex-col min-h-svh">
<MenuBar user={user} />
{children}
</section>
<Footer />
</>
);
}
2 changes: 1 addition & 1 deletion app/next-client-app/app/(protected)/projects/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const columns: ColumnDef<Project>[] = [
<Link href={`/projects/${id}/`}>
<Button
variant="link"
className="font-bold text-black dark:text-white"
className="font-bold"
>
{name}
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ export function ActionsDownloadMenu({ scanreportId }: Props) {
<DropdownMenuGroup>
<DropdownMenuLabel>Downloads</DropdownMenuLabel>
<DropdownMenuItem onSelect={() => handleDownload("application/json")}>
<FileJson className="mr-2 size-4" />
<FileJson />
Mapping JSON
</DropdownMenuItem>
<DropdownMenuItem onSelect={() => handleDownload("text/csv")}>
<FileSpreadsheet className="mr-2 size-4" />
<FileSpreadsheet />
Mapping CSV
</DropdownMenuItem>
</DropdownMenuGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const columns: ColumnDef<FileDownload>[] = [
};
return (
<Button variant={"outline"} onClick={handleDownload}>
Download <Download className="ml-2 size-4" />
Download <Download />
</Button>
);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const columns = (
prePath.endsWith("/") ? prePath : prePath + "/"
}fields/${id}`}
>
<Button variant="link" className="font-bold dark:text-white">
<Button variant="link" className="font-bold">
{name}
</Button>
</Link>
Expand Down
4 changes: 2 additions & 2 deletions app/next-client-app/app/(protected)/scanreports/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const columns: ColumnDef<ScanReport>[] = [
<Link href={`/scanreports/${id}`}>
<Button
variant="link"
className="font-bold text-black dark:text-white"
className="font-bold"
>
{dataset}
</Button>
Expand Down Expand Up @@ -180,7 +180,7 @@ export const columns: ColumnDef<ScanReport>[] = [
</DropdownMenuItem>
<DropdownMenuItem
onClick={() => setOpen(true)}
className="text-black dark:text-white hover:text-destructive focus:text-destructive dark:hover:text-destructive dark:focus:text-destructive"
className="hover:text-destructive focus:text-destructive dark:hover:text-destructive dark:focus:text-destructive"
>
Delete <TrashIcon className="ml-auto" />
</DropdownMenuItem>
Expand Down
Loading
Loading