From 730cebd76b2a2d3e4fa38a17d4686e1668495846 Mon Sep 17 00:00:00 2001 From: Leonardo Mendoza Date: Fri, 18 Aug 2023 16:06:28 -0600 Subject: [PATCH 1/6] 8822-qa-affiliations-and-professional-activities-are-missing-external-links-in-summary-page --- .../summary-simple-panel/summary-simple-panel.component.html | 2 +- .../pages/trusted-summary/trusted-summary.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/trusted-summary/component/summary-simple-panel/summary-simple-panel.component.html b/src/app/trusted-summary/component/summary-simple-panel/summary-simple-panel.component.html index d0aa37cbfd..23531718ab 100644 --- a/src/app/trusted-summary/component/summary-simple-panel/summary-simple-panel.component.html +++ b/src/app/trusted-summary/component/summary-simple-panel/summary-simple-panel.component.html @@ -30,7 +30,7 @@ rel="noopener noreferrer" *ngIf="element.url" href="{{ element.url }}" - >{{ element.url }}{{ element.stringA }} diff --git a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.ts b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.ts index ab65a62650..3547c99321 100644 --- a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.ts +++ b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.ts @@ -176,7 +176,7 @@ export class TrustedSummaryComponent implements OnInit, OnDestroy { return { verified: id.validated, url: id.url, - stringA: id.id, + stringA: id.commonName + ': ' + id.reference, } } ) From 78b36f4a7ce60af0f5d78401ca0518aecc2a106b Mon Sep 17 00:00:00 2001 From: Leonardo Mendoza Date: Fri, 18 Aug 2023 16:19:10 -0600 Subject: [PATCH 2/6] Multiple fixes --- .../component/summary-panel/summary-panel.component.html | 8 ++++++-- .../component/summary-panel/summary-panel.component.ts | 1 + .../pages/trusted-summary/trusted-summary.component.html | 1 + .../trusted-summary.component.scss-theme.scss | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/trusted-summary/component/summary-panel/summary-panel.component.html b/src/app/trusted-summary/component/summary-panel/summary-panel.component.html index e1b04b470b..f66f3ec01c 100644 --- a/src/app/trusted-summary/component/summary-panel/summary-panel.component.html +++ b/src/app/trusted-summary/component/summary-panel/summary-panel.component.html @@ -79,7 +79,11 @@ {{ activity.startDate }} - >to @@ -87,7 +91,7 @@ {{ activity.endDate }} present diff --git a/src/app/trusted-summary/component/summary-panel/summary-panel.component.ts b/src/app/trusted-summary/component/summary-panel/summary-panel.component.ts index 8e61e8aa29..a69ab534fd 100644 --- a/src/app/trusted-summary/component/summary-panel/summary-panel.component.ts +++ b/src/app/trusted-summary/component/summary-panel/summary-panel.component.ts @@ -19,6 +19,7 @@ export class SummaryPanelComponent implements OnInit { @Input() count: number = 0 @Input() moreLabel: string = '' @Input() moreLabelSingular: string = '' + @Input() showToPresent = true activitiesToDisplay: ActivitySummary[] acitivityCountOverflow: boolean unsubscribe = new Subject() diff --git a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html index 0facf8b048..1b612de5ed 100644 --- a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html +++ b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html @@ -248,6 +248,7 @@

FUNDING

[count]="trustedSummary.professionalActivitiesCount" [moreLabel]="labelMoreProfessionalActivities" moreLabelSingular="labelMoreProfessionalActivitie" + [showToPresent]="false" >
diff --git a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss index 28f89e8018..a92c5cd481 100644 --- a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss +++ b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss @@ -12,7 +12,7 @@ color: map-get($foreground, 'text-dark-mid') } - :host { + main { background-color: map-get($background, 'ui-background-lightest'); } From 4228d088ed104338b66ec7dd51b0daebfeae180d Mon Sep 17 00:00:00 2001 From: Leonardo Mendoza Date: Fri, 18 Aug 2023 16:21:30 -0600 Subject: [PATCH 3/6] 8784-qa-fix-links-to-more-items-in-summary-page --- .../pages/trusted-summary/trusted-summary.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html index 1b612de5ed..92a49add9f 100644 --- a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html +++ b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.html @@ -247,7 +247,7 @@

FUNDING

[activitySummary]="trustedSummary.professionalActivities" [count]="trustedSummary.professionalActivitiesCount" [moreLabel]="labelMoreProfessionalActivities" - moreLabelSingular="labelMoreProfessionalActivitie" + [moreLabelSingular]="labelMoreProfessionalActivitie" [showToPresent]="false" >
From c649be5b78efd1fd9e2d57a557e4f48fd1885e51 Mon Sep 17 00:00:00 2001 From: Leonardo Mendoza Date: Fri, 18 Aug 2023 16:39:04 -0600 Subject: [PATCH 4/6] 8819-prod-anchor-link-to-professional-activities-section-goes-to-education-and-qualifications --- .../cdk/panel/panels/panels.component.html | 3 +- src/app/cdk/panel/panels/panels.component.ts | 1 + .../affiliation-stacks-groups.component.html | 132 +++++++++--------- 3 files changed, 68 insertions(+), 68 deletions(-) diff --git a/src/app/cdk/panel/panels/panels.component.html b/src/app/cdk/panel/panels/panels.component.html index d3dc915685..c0ff2dc926 100644 --- a/src/app/cdk/panel/panels/panels.component.html +++ b/src/app/cdk/panel/panels/panels.component.html @@ -1,4 +1,5 @@ -
+ +
- + - - + + + - - - - -
-

- Add details about where you have studied and educational or - professional qualifications you have been awarded. -

- - Learn more about adding education or qualifications to your ORCID - record - -
-
- -
+
+

+ Add details about where you have studied and educational or + professional qualifications you have been awarded. +

+ + Learn more about adding education or qualifications to your ORCID + record + +
+ + + +
+
{{ activity.startDate }} - >toto diff --git a/src/app/trusted-summary/component/summary-panel/summary-panel.component.scss-theme.scss b/src/app/trusted-summary/component/summary-panel/summary-panel.component.scss-theme.scss index e7119dd109..e50e10673e 100644 --- a/src/app/trusted-summary/component/summary-panel/summary-panel.component.scss-theme.scss +++ b/src/app/trusted-summary/component/summary-panel/summary-panel.component.scss-theme.scss @@ -8,8 +8,6 @@ $foreground: map-get($theme, foreground); $background: map-get($theme, background); - - .verified { color: mat.get-color-from-palette($accent, 400); } diff --git a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss index a92c5cd481..6e5d8b242b 100644 --- a/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss +++ b/src/app/trusted-summary/pages/trusted-summary/trusted-summary.component.scss-theme.scss @@ -9,9 +9,9 @@ $background: map-get($theme, background); .day-title { - color: map-get($foreground, 'text-dark-mid') + color: map-get($foreground, 'text-dark-mid'); } - + main { background-color: map-get($background, 'ui-background-lightest'); } From d881f0f7e3f881b52eaeaf291206e80f472106d3 Mon Sep 17 00:00:00 2001 From: Leonardo Mendoza Date: Fri, 18 Aug 2023 16:45:56 -0600 Subject: [PATCH 6/6] format --- .../component/summary-panel/summary-panel.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/trusted-summary/component/summary-panel/summary-panel.component.html b/src/app/trusted-summary/component/summary-panel/summary-panel.component.html index 974c55996c..3b10ac769a 100644 --- a/src/app/trusted-summary/component/summary-panel/summary-panel.component.html +++ b/src/app/trusted-summary/component/summary-panel/summary-panel.component.html @@ -82,7 +82,7 @@ toto