Skip to content

Commit

Permalink
Merge branch 'main' into fix-disabled-email-notification-dropdown-sty…
Browse files Browse the repository at this point in the history
…ling
  • Loading branch information
Camelia-Orcid authored Jul 25, 2024
2 parents 5c3db00 + 499d525 commit 085e0d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
*ngIf="primaryEmail || verifyEmailSend || emailVerified"
*ngIf="justRegistered || verifyEmailSend || emailVerified"
role="alert"
class="info"
[ngClass]="{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { PlatformInfoService } from '../platform-info'
export class TopBarVerificationEmailComponent implements OnInit, OnDestroy {
$destroy: Subject<boolean> = new Subject<boolean>()
@Input() emailVerified: boolean
@Input() justRegistered: boolean
@Input() messageType: 'forCredentials' | 'forManualEditing' =
'forManualEditing'

Expand Down
1 change: 1 addition & 0 deletions src/app/record/components/top-bar/top-bar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<app-top-bar-verification-email
[emailVerified]="emailVerified"
[justRegistered]="justRegistered"
></app-top-bar-verification-email>

<ng-container *ngIf="!isPublicRecord && !recordWithIssues">
Expand Down

0 comments on commit 085e0d4

Please sign in to comment.