Skip to content

Commit c1e5ad4

Browse files
authored
Merge pull request #2746 from ORCID/aromanovv/PD-4790-improve-auth-challenge
Aromanovv/pd 4790 improve auth challenge
2 parents d2f8e3d + 64934d7 commit c1e5ad4

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

projects/orcid-registry-ui/src/lib/components/import-works-dialog/import-works-dialog.component.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,7 @@ <h3 class="import-works-dialog__card-title">{{ link.name }}</h3>
247247
>
248248
</div>
249249
<div class="import-works-dialog__card-content">
250-
<h3
251-
class="import-works-dialog__card-title import-works-dialog__card-title--more"
252-
>
253-
{{ link.name }}
254-
</h3>
250+
<h3 class="import-works-dialog__card-title import-works-dialog__card-title--more">{{ link.name }}</h3>
255251
<p class="import-works-dialog__card-description">
256252
{{ link.description }}
257253
</p>

src/app/cdk/panel/panel/panel.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,7 @@ export class PanelComponent implements OnInit {
267267
}
268268

269269
expandItem() {
270-
this._rumEvents.recordSimpleEvent(
271-
AppEventName.RecordExpandFeaturedWorkClicked
272-
)
270+
this._rumEvents.recordSimpleEvent(AppEventName.RecordExpandFeaturedWorkClicked)
273271
const modalComponent = this._dialog.open(
274272
ExpandedWorkFeaturedModalComponent,
275273
{

src/app/register/register-observability.service.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,10 @@ export class RegisterObservabilityService {
148148
}
149149

150150
stepLoaded(step: 'a' | 'b' | 'c2' | 'c' | 'd') {
151-
this._observability.recordEvent('orcid_registration', stepLoadedEvent(step))
151+
this._observability.recordEvent(
152+
'orcid_registration',
153+
stepLoadedEvent(step)
154+
)
152155
}
153156

154157
initializeJourney(reactivation) {

0 commit comments

Comments
 (0)