We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ec6f1 commit 1e848d5Copy full SHA for 1e848d5
src/components/dashboard/widgets/dw_last_use_cases.tsx
@@ -27,7 +27,7 @@ export const DwLastUseCases = (props: DwLastUseCasesProps) => {
27
const rows = props.useCases.map(useCase => {
28
return [
29
{
30
- title: <div><div><b>Engagement:</b> <Link to={`/app/engagements/${useCase.engagement_uuid}`}>{ useCase?.customer_name + ' - ' + useCase?.project_name }</Link></div><div>{useCase?.description}</div></div>,
+ title: <div><div><b><Link to={`/app/engagements/${useCase.engagement_uuid}`}>{ useCase?.customer_name + ' - ' + useCase?.project_name }</Link></b></div><div>{useCase?.description}</div></div>,
31
},
32
];
33
});
0 commit comments