Skip to content

Commit

Permalink
fix project 45
Browse files Browse the repository at this point in the history
  • Loading branch information
mluena committed Dec 20, 2024
1 parent 1e15d81 commit 68859d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/containers/filters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Filters({ nrResults = 0 }: { nrResults: number }) {
Clear all
</button>
<DialogClose>
<Button variant="primary" size="base" onClick={close}>
<Button variant="primary" size="base">
<p>
Show <span className="font-bold"> {nrResults} </span> results
</p>
Expand Down
2 changes: 1 addition & 1 deletion client/src/containers/projects/detail/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default function ProjectDashboard({ id }: { id: string }) {
<div className="flex items-center justify-between">
<h3 className="text-base text-green-800">
Total funding{' '}
{data.project_funding.unit && <span>({data.project_funding.unit})</span>}
{data.project_funding?.unit && <span>({data.project_funding?.unit})</span>}
</h3>

<Tooltip>
Expand Down

0 comments on commit 68859d9

Please sign in to comment.