Skip to content

Commit

Permalink
Changed 'Effort' to 'Total Effort' on application inventory page
Browse files Browse the repository at this point in the history
	modified:   client/public/locales/en/translation.json
	modified:   client/src/app/pages/applications/applications-table/applications-table.tsx
	modified:   client/src/app/pages/applications/components/application-detail-drawer/application-detail-drawer.tsx
  • Loading branch information
kpunwatk committed Apr 14, 2024
1 parent 65012b8 commit fb2782a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions client/public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@
"details": "Details",
"displayName": "Display name",
"effort": "Effort",
"totalEffort": "Total Effort",
"effortEstimate": "Effort estimate",
"email": "Email",
"error": "Error",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ export const ApplicationsTable: React.FC = () => {
review: "Review",
analysis: "Analysis",
tags: "Tags",
effort: "Effort",
effort: "Total Effort",
},
isFilterEnabled: true,
isSortEnabled: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const ApplicationDetailDrawer: React.FC<
) : null}
</List>
<Title headingLevel="h3" size="md">
{t("terms.effort")}
{t("terms.totalEffort")}
</Title>
<Text component="small">
<Text component="small">
Expand Down

0 comments on commit fb2782a

Please sign in to comment.