Skip to content

Commit

Permalink
Merge pull request #1494 from cityofaustin/19820-show-full-name
Browse files Browse the repository at this point in the history
Make Dashboard modals show full project name
  • Loading branch information
mddilley authored Dec 5, 2024
2 parents 44767a5 + eb78619 commit 8fcba47
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 8fcba47

Please sign in to comment.