Skip to content

Commit 654ba29

Browse files
authored
Merge branch 'master' into feat/1151/workflow-az
2 parents 7bef608 + 9b8f890 commit 654ba29

48 files changed

Lines changed: 970 additions & 1095 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/next-client-app/app/(protected)/datasets/columns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const columns: ColumnDef<DataSet>[] = [
3737
<Link href={`/datasets/${id}/`}>
3838
<Button
3939
variant="link"
40-
className="font-bold text-black dark:text-white"
40+
className="font-bold"
4141
>
4242
{name}
4343
</Button>

app/next-client-app/app/(protected)/layout.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import React from "react";
33
import { getServerSession } from "next-auth";
44
import { options } from "@/auth/options";
55
import { MenuBar } from "@/components/core/menubar";
6+
import Footer from "@/components/core/footer";
67

78
export default async function ProtectedLayout({
89
children,
@@ -14,10 +15,11 @@ export default async function ProtectedLayout({
1415

1516
return (
1617
<>
17-
<section className="container mb-5">
18+
<section className="container flex flex-col min-h-svh">
1819
<MenuBar user={user} />
1920
{children}
2021
</section>
22+
<Footer />
2123
</>
2224
);
2325
}

app/next-client-app/app/(protected)/projects/columns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const columns: ColumnDef<Project>[] = [
2020
<Link href={`/projects/${id}/`}>
2121
<Button
2222
variant="link"
23-
className="font-bold text-black dark:text-white"
23+
className="font-bold"
2424
>
2525
{name}
2626
</Button>

app/next-client-app/app/(protected)/scanreports/[id]/actions-download-menu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ export function ActionsDownloadMenu({ scanreportId }: Props) {
3131
<DropdownMenuGroup>
3232
<DropdownMenuLabel>Downloads</DropdownMenuLabel>
3333
<DropdownMenuItem onSelect={() => handleDownload("application/json")}>
34-
<FileJson className="mr-2 size-4" />
34+
<FileJson />
3535
Mapping JSON
3636
</DropdownMenuItem>
3737
<DropdownMenuItem onSelect={() => handleDownload("text/csv")}>
38-
<FileSpreadsheet className="mr-2 size-4" />
38+
<FileSpreadsheet />
3939
Mapping CSV
4040
</DropdownMenuItem>
4141
</DropdownMenuGroup>

app/next-client-app/app/(protected)/scanreports/[id]/downloads/columns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const columns: ColumnDef<FileDownload>[] = [
108108
};
109109
return (
110110
<Button variant={"outline"} onClick={handleDownload}>
111-
Download <Download className="ml-2 size-4" />
111+
Download <Download />
112112
</Button>
113113
);
114114
},

app/next-client-app/app/(protected)/scanreports/[id]/tables/[tableId]/columns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const columns = (
3737
prePath.endsWith("/") ? prePath : prePath + "/"
3838
}fields/${id}`}
3939
>
40-
<Button variant="link" className="font-bold dark:text-white">
40+
<Button variant="link" className="font-bold">
4141
{name}
4242
</Button>
4343
</Link>

app/next-client-app/app/(protected)/scanreports/columns.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const columns: ColumnDef<ScanReport>[] = [
4646
<Link href={`/scanreports/${id}`}>
4747
<Button
4848
variant="link"
49-
className="font-bold text-black dark:text-white"
49+
className="font-bold"
5050
>
5151
{dataset}
5252
</Button>
@@ -180,7 +180,7 @@ export const columns: ColumnDef<ScanReport>[] = [
180180
</DropdownMenuItem>
181181
<DropdownMenuItem
182182
onClick={() => setOpen(true)}
183-
className="text-black dark:text-white hover:text-destructive focus:text-destructive dark:hover:text-destructive dark:focus:text-destructive"
183+
className="hover:text-destructive focus:text-destructive dark:hover:text-destructive dark:focus:text-destructive"
184184
>
185185
Delete <TrashIcon className="ml-auto" />
186186
</DropdownMenuItem>

0 commit comments

Comments
 (0)