Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Task" ADD COLUMN "estimatedHours" DOUBLE PRECISION;
1 change: 1 addition & 0 deletions src/backend/src/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,7 @@ model Task {
notes String
deadline DateTime?
startDate DateTime?
estimatedHours Float?
assignees User[] @relation(name: "assignedTo")
priority Task_Priority
status Task_Status
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>FinishLine</title>
<title>FinishLine | Sandbox</title>
</head>

<body>
Expand Down
3 changes: 3 additions & 0 deletions src/frontend/src/pages/HomePage/AdminHomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ const AdminHomePage = ({ user }: AdminHomePageProps) => {
<Typography variant="h3" marginLeft="auto" sx={{ marginTop: 2, textAlign: 'center', pt: 3, padding: 0 }}>
Welcome, {user.firstName}!
</Typography>
<Typography variant="h6" sx={{ textAlign: 'center', color: 'warning.main' }}>
🚧 Sandbox Environment
</Typography>
<Box
sx={{
display: 'flex',
Expand Down
3 changes: 3 additions & 0 deletions src/frontend/src/pages/HomePage/LeadHomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const LeadHomePage = ({ user }: LeadHomePageProps) => {
<Typography variant="h3" marginLeft="auto" sx={{ marginTop: 2, textAlign: 'center', pt: 3, padding: 0 }}>
Welcome, {user.firstName}!
</Typography>
<Typography variant="h6" sx={{ textAlign: 'center', color: 'warning.main' }}>
🚧 Sandbox Environment
</Typography>
<Box
sx={{
display: 'flex',
Expand Down