Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/Pmer/PmerFilters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function PmerFilters({
<>
<TextInput
name="search"
placeholder="Search by title"
placeholder="Search by title, project and department"
value={value.search}
onChange={onChange}
/>
Expand Down
2 changes: 1 addition & 1 deletion app/views/Pmer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function Pmer() {
offset,
},
filters: {
title: filter.search ? { iContains: filter.search } : undefined,
search: filter.search || undefined,
regionId: filter.region || undefined,
category: filter.category || undefined,
reportType: filter.reportType || undefined,
Expand Down
11 changes: 6 additions & 5 deletions app/views/PrivateLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
ArtboardLineIcon,
DashboardLineIcon,
DocumentPdfLineIcon,
DrefTwoIcon,
FocusTwoLineIcon,
ImStrategyIcon,
LeadershipIcon,
Expand Down Expand Up @@ -67,6 +68,11 @@ function PrivateLayout() {
to: 'dataAndReports',
icon: <FocusTwoLineIcon />,
},
{
title: 'PMER',
to: 'pmer',
icon: <DrefTwoIcon />,
},
{
title: 'Capacity and Resources',
to: 'capacityAndResources',
Expand All @@ -82,11 +88,6 @@ function PrivateLayout() {
to: 'documents',
icon: <DocumentPdfLineIcon />,
},
{
title: 'PMER',
to: 'pmer',
icon: <DocumentPdfLineIcon />,
},
{
title: 'Online Interactive',
to: 'onlineInteractive',
Expand Down
2 changes: 1 addition & 1 deletion backend
Loading