Skip to content

Commit

Permalink
comments code instead of delete it
Browse files Browse the repository at this point in the history
  • Loading branch information
agnlez committed Dec 3, 2024
1 parent b2080be commit c5b1733
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion client/src/containers/overview/project-details/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ const CreateProjectDetails = () => (
</Dialog>
);

//////// ScoreIndicator component ////////
interface ScoreIndicatorProps {
score: "High" | "Medium" | "Low";
className?: string;
Expand Down Expand Up @@ -382,6 +381,17 @@ export default function ProjectDetails() {
<h3 className="text-md">Scorecard ratings</h3>
</Label>
</div>
{/*<div className="flex items-center gap-2">*/}
{/* <Label className="text-xs text-big-stone-200">*/}
{/* Compare with a different project*/}
{/* </Label>*/}
{/* <Button*/}
{/* variant="outline"*/}
{/* className="h-8 w-8 p-0 hover:bg-transparent"*/}
{/* >*/}
{/* <Plus className="h-4 w-4" />*/}
{/* </Button>*/}
{/*</div>*/}
</div>
<div className="mt-2">
{projectData.scorecard.map((item, index) => (
Expand Down Expand Up @@ -417,6 +427,17 @@ export default function ProjectDetails() {
<h3 className="text-md">Cost estimates</h3>
</Label>
</div>
{/*<div className="flex items-center gap-2">*/}
{/* <Label className="text-xs text-big-stone-200">*/}
{/* Compare with a different project*/}
{/* </Label>*/}
{/* <Button*/}
{/* variant="outline"*/}
{/* className="h-8 w-8 p-0 hover:bg-transparent"*/}
{/* >*/}
{/* <Plus className="h-4 w-4" />*/}
{/* </Button>*/}
{/*</div>*/}
</div>
<div>
{projectData.costEstimates.map((estimate) => (
Expand Down

0 comments on commit c5b1733

Please sign in to comment.