diff --git a/src/app/item-page/orcid-page/orcid-queue/orcid-queue.component.ts b/src/app/item-page/orcid-page/orcid-queue/orcid-queue.component.ts
index 6079287f711..098bac3fade 100644
--- a/src/app/item-page/orcid-page/orcid-queue/orcid-queue.component.ts
+++ b/src/app/item-page/orcid-page/orcid-queue/orcid-queue.component.ts
@@ -47,13 +47,12 @@ export class OrcidQueueComponent implements OnInit, OnDestroy {
/**
* A list of orcid queue records
*/
- private list$: BehaviorSubject>> = new BehaviorSubject>>({} as any);
+ list$: BehaviorSubject>> = new BehaviorSubject>>({} as any);
/**
* The AlertType enumeration
- * @type {AlertType}
*/
- AlertTypeEnum = AlertType;
+ readonly AlertTypeEnum = AlertType;
/**
* Array to track all subscriptions and unsubscribe them onDestroy
@@ -99,13 +98,6 @@ export class OrcidQueueComponent implements OnInit, OnDestroy {
);
}
- /**
- * Return the list of orcid queue records
- */
- getList(): Observable>> {
- return this.list$.asObservable();
- }
-
/**
* Return the icon class for the queue object type
*
diff --git a/src/app/navbar/navbar.component.html b/src/app/navbar/navbar.component.html
index bc1e04f5130..9b043a5865c 100644
--- a/src/app/navbar/navbar.component.html
+++ b/src/app/navbar/navbar.component.html
@@ -1,4 +1,4 @@
- |