diff --git a/frontend/src/components/project/controls/ProjectMonthModal.tsx b/frontend/src/components/project/controls/ProjectMonthModal.tsx index d6f2a5f8..b3e8c5da 100644 --- a/frontend/src/components/project/controls/ProjectMonthModal.tsx +++ b/frontend/src/components/project/controls/ProjectMonthModal.tsx @@ -17,6 +17,7 @@ import {singleProjectMonthResolve} from '../../hooks/useProjects'; import './ProjectMonthModal.scss'; import { useDispatch } from 'react-redux'; import { saveProject } from '../../../actions'; +import { Icon } from '../../controls/Icon'; type ProjectMonthModalProps = { @@ -91,7 +92,17 @@ export const ProjectMonthModal = ({onClose, projectMonth}: ProjectMonthModalProp {fullProjectMonth.endCustomer &&

-
{fullProjectMonth.endCustomer.name}
+
{t('project.endCustomer.clientId')}: {fullProjectMonth.endCustomer.name}
+ + {fullProjectMonth.project.endCustomer?.contact && +
+ + {fullProjectMonth.project.endCustomer?.contact} +
+ } + {fullProjectMonth.project.endCustomer?.notes && + {t('project.endCustomer.notes')}: {fullProjectMonth.project.endCustomer?.notes} + }
}