Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Changed project titlee
Browse files Browse the repository at this point in the history
  • Loading branch information
schromya committed Nov 28, 2023
1 parent 9e624f4 commit c113d0b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/[...projectIds]/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ export default function page ({ params }) {
return (
<>

<div className='flex w-full'>
<div className='flex w-10/12 flex-wrap' > Project: {project && project.name} </div>
<div className='flex w-full p-10'>

<div className='flex w-10/12 flex-wrap text-3xl font-bold overline'> Project {project && project.name}</div>
<div className='flex w-2/12 justify-end'>
{/* On click, delete project, return to home page, and refresh */}
<Button label='Delete Project' clickAction={() => { deleteProject(params.projectIds, router) }} className='bg-red-800 ' isCentered='true' />
<Button label='Delete Project' clickAction={() => { deleteProject(params.projectIds, router) }} className='bg-red-800 my-auto px-4' isCentered='true' />
</div>
</div>
<TreeGraph projectID={params.projectIds} className=' w-full h-full' />
Expand Down

0 comments on commit c113d0b

Please sign in to comment.