Skip to content

Commit

Permalink
Merge pull request #170 from NCI-Agency/GH-103
Browse files Browse the repository at this point in the history
#103: For principal organizations, change label to "Official Organization Name"
  • Loading branch information
gjvoosten authored Sep 21, 2017
2 parents ba051e6 + 47d10d1 commit 86736a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/pages/organizations/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default class OrganizationForm extends ValidatableFormWrapper {
</Form.Field>

<RequiredField id="shortName" label="Name" placeholder="e.g. EF1.1" />
<Form.Field id="longName" label="Description" placeholder="e.g. Force Sustainment" />
<Form.Field id="longName" label={organization.type === "PRINCIPAL_ORG" ? "Official Organization Name" : "Description"} placeholder="e.g. Force Sustainment" />
</Fieldset>

{organization.isAdvisorOrg() && <div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/organizations/Show.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default class OrganizationShow extends Page {
{org.humanNameOfType()}
</Form.Field>

<Form.Field id="longName" label="Description"/>
<Form.Field id="longName" label={org.type === "PRINCIPAL_ORG" ? "Official Organization Name" : "Description"}/>

{org.parentOrg && org.parentOrg.id &&
<Form.Field id="parentOrg" label="Parent organization">
Expand Down

0 comments on commit 86736a0

Please sign in to comment.