diff --git a/backend/src/routes/contracts.ts b/backend/src/routes/contracts.ts index 88ac4d5..1c6e091 100644 --- a/backend/src/routes/contracts.ts +++ b/backend/src/routes/contracts.ts @@ -131,6 +131,7 @@ const CONTRACT_DOCUMENTS_SELECT = { select: { id: true, fullName: true, + email: true, phoneNumber: true, firstResidenceAddress: true, idDocumentFrontUrl: true, diff --git a/web-dashboard/index.html b/web-dashboard/index.html index 8f6cf22..cdfd176 100644 --- a/web-dashboard/index.html +++ b/web-dashboard/index.html @@ -450,6 +450,17 @@ .nav-item .nav-icon { font-size: 15px; width: 18px; text-align: center; } .nav-item:hover { background: var(--bg); } .nav-item.active { background: var(--green-bg); color: var(--green); font-weight: 600; } + .nav-group-title { + display: flex; + align-items: center; + gap: 10px; + width: 100%; + padding: 10px 12px 2px; + font-size: 13.5px; + color: var(--text); + font-weight: 600; + } + .nav-subitem { padding-left: 34px; font-size: 13px; } .content-area { flex: 1; min-width: 0; } .page { display: none; } @@ -578,7 +589,9 @@