Skip to content

Commit

Permalink
use the full project name in modals
Browse files Browse the repository at this point in the history
  • Loading branch information
chiaberry committed Dec 2, 2024
1 parent 4136f1c commit eb78619
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions moped-editor/src/views/dashboard/DashboardView.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ const DashboardView = () => {
<DashboardTimelineModal
table="phases"
projectId={entry.project_id}
projectName={entry.project.project_name}
projectName={entry.project.project_name_full}
dashboardRefetch={refetch}
>
<ProjectStatusBadge
Expand All @@ -222,7 +222,7 @@ const DashboardView = () => {
render: (entry) => (
<DashboardStatusModal
projectId={entry.project_id}
projectName={entry.project.project_name}
projectName={entry.project.project_name_full}
currentPhaseId={entry.current_phase_id}
modalParent="dashboard"
statusUpdate={entry.status_update}
Expand All @@ -241,7 +241,7 @@ const DashboardView = () => {
<DashboardTimelineModal
table="milestones"
projectId={entry.project_id}
projectName={entry.project.project_name}
projectName={entry.project.project_name_full}
dashboardRefetch={refetch}
>
<MilestoneProgressMeter
Expand Down

0 comments on commit eb78619

Please sign in to comment.