Skip to content

Commit

Permalink
Merge branch 'master' into 2118-au-05-audit-process-migrate-logs-to-s…
Browse files Browse the repository at this point in the history
…3-buckets
  • Loading branch information
Matthew-Grayson authored Sep 25, 2023
2 parents 3755f5b + ef2c654 commit 21cb62d
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 39 deletions.
14 changes: 10 additions & 4 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@types/aws-lambda": "^8.10.62",
"@types/dockerode": "^3.3.19",
"@types/jest": "^27",
"@types/node": "^18.11",
"@types/node": "^20.6",
"@types/node-fetch": "^2.6.4",
"@types/nodemailer": "^6.4.0",
"@types/papaparse": "^5.3.0",
Expand Down
54 changes: 34 additions & 20 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"react-simple-maps": "^3.0.0",
"react-table": "^7.8.0",
"resolve-url-loader": "^5.0.0",
"universal-cookie": "^4.0.4",
"universal-cookie": "^6.1.1",
"uswds": "^2.13.3",
"web-vitals": "^2.1.4"
},
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,16 @@ const HeaderNoCtx: React.FC<ContextType> = (props) => {
exact: false
},
{ title: 'Feeds', path: '/feeds', users: ALL_USERS, exact: false },

/*
Hiding Reports page until finished
{
title: 'Reports',
path: '/reports',
users: ALL_USERS,
exact: true
},
},*/

{
title: 'Scans',
path: '/scans',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,6 @@ exports[`Header component matches snapshot 1`] = `
Feeds
</a>
</div>
<div
class="css-g2ra7n"
>
<a
class="NavItem-link"
href="/reports"
style="outline: none;"
>
Reports
</a>
</div>
</div>
<div
class="Header-spacing"
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/test-utils/organization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ export const testOrganization = {
granularScans: [],
tags: [],
parent: null,
children: []
children: [],
pendingDomains: []
};

0 comments on commit 21cb62d

Please sign in to comment.