Skip to content

Commit

Permalink
v3.0.3 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonybernardi committed Aug 16, 2022
1 parent 9ade410 commit 4cd7262
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"build:shared": "yarn workspace shared build",
"build:frontend": "yarn workspace frontend build",
"i": "yarn install && yarn prisma:generate",
"istart": "yarn i && yarn start",
"reset": "rm yarn.lock; rm -rf ./node_modules; rm -rf src/frontend/node_modules; rm -rf src/backend/node_modules; rm -rf src/shared/node_modules;",
"install:hard": "yarn reset; yarn install; yarn prisma:generate"
},
Expand Down
2 changes: 1 addition & 1 deletion src/backend/src/routes/change-requests.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ changeRequestsRouter.post(
'/review',
body('reviewerId').isInt({ min: 0 }).not().isString(),
body('crId').isInt({ min: 0 }).not().isString(),
body('reviewNotes').isString().not().isEmpty(),
body('reviewNotes').isString(),
body('accepted').isBoolean(),
reviewChangeRequest
);
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet" />
<title>NER - PM Dashboard</title>
<title>FinishLine</title>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/layouts/NavTopBar/NavTopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const NavTopBar: React.FC = () => {
src={'/NER-Logo-App-Icon.png'}
alt="Northeastern Electric Racing Logo"
/>{' '}
<h3 className={styles.title}>NER PM Dashboard</h3>
<h3 className={styles.title}>FinishLine by NER</h3>
</Link>
</Navbar.Brand>
<Navbar.Toggle aria-controls="nav-top-bar-items" />
Expand Down

0 comments on commit 4cd7262

Please sign in to comment.