Skip to content

Commit 266c271

Browse files
frano-mMillenniumFalconMechanic
authored andcommitted
Change Analysis Tools to External Resources for tertiary portals hand-off. Resolves #974. (#983)
1 parent 043cec5 commit 266c271

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

spa/src/app/files/hca-project/hca-project.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ <h4 class="fontsize-m semi-bold">Project Downloads</h4>
138138
</div>
139139
</div>
140140
<div class="project-integrations">
141-
<h4 class="fontsize-m semi-bold">Analysis Tools</h4>
141+
<h4 class="fontsize-m semi-bold">External Resources</h4>
142142
<ng-container [ngSwitch]="state.integratedWithTertiaryPortals">
143143
<ng-container *ngSwitchCase="true">
144144
<div class="stretch">
145145
<p class="fontsize-xs">This project's data can be viewed live in the following
146-
analysis tools:</p>
146+
external resources:</p>
147147
</div>
148148
<project-integrations [integrations]="state.integrations"></project-integrations>
149149
</ng-container>

spa/src/app/files/hca-project/hca-project.component.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ describe("HCAProjectComponent", () => {
6060
const COMPONENT_NAME_COPY_TO_CLIPBOARD = "copy-to-clipboard";
6161

6262
// Heading labels
63-
const HEADING_ANALYSIS_TOOLS = "Analysis Tools";
6463
const HEADING_CITATION = "Citation";
64+
const HEADING_EXTERNAL_RESOURCES = "External Resources";
6565

6666
// Project matrix urls
6767
const PROJECT_DETAIL_PROJECT_MATRIX_URLS = new ProjectMatrixUrls("2cd14cf5-f8e0-4c97-91a2-9e8957f41ea8", "https://dev.data.humancellatlas.org/project-assets/project-matrices/537f5501-a964-4ade-91c8-7bd4a23b049d.csv.zip", "https://dev.data.humancellatlas.org/project-assets/project-matrices/537f5501-a964-4ade-91c8-7bd4a23b049d.loom", "https://dev.data.humancellatlas.org/project-assets/project-matrices/537f5501-a964-4ade-91c8-7bd4a23b049d.mtx.zip");
@@ -526,9 +526,9 @@ describe("HCAProjectComponent", () => {
526526
});
527527

528528
/**
529-
* Confirm "Analysis Tools" is displayed.
529+
* Confirm "External Resources" is displayed.
530530
*/
531-
it(`should display "Analysis Tools"`, () => {
531+
it(`should display "External Resources"`, () => {
532532

533533
testStore.pipe
534534
.and.returnValues(
@@ -540,8 +540,8 @@ describe("HCAProjectComponent", () => {
540540

541541
fixture.detectChanges();
542542

543-
// Confirm "Analysis Tools" is displayed
544-
expect(isHeadingDisplayed(HEADING_ANALYSIS_TOOLS)).toEqual(true);
543+
// Confirm "External Resources" is displayed
544+
expect(isHeadingDisplayed(HEADING_EXTERNAL_RESOURCES)).toEqual(true);
545545
});
546546

547547
/**

0 commit comments

Comments
 (0)