Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NCI-Agency/anet#103: For principal organizations, change label to "Official Organization Name" #170

Merged
merged 1 commit into from
Sep 21, 2017
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 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