diff --git a/web/src/app/shared/components/type-ahead/type-ahead.component.ts b/web/src/app/shared/components/type-ahead/type-ahead.component.ts index 7062e797e..f3dcdae2c 100644 --- a/web/src/app/shared/components/type-ahead/type-ahead.component.ts +++ b/web/src/app/shared/components/type-ahead/type-ahead.component.ts @@ -86,7 +86,7 @@ export class TypeAheadComponent implements OnInit, OnDestroy { .pipe(take(1)) .subscribe((accessIds) => { this.filteredAccessIds = accessIds; - const accessId = accessIds.find((accessId) => accessId.accessId === value); + const accessId = accessIds.find((accessId) => accessId.accessId.toLowerCase() === value.toLowerCase()); if (typeof accessId !== 'undefined') { this.name = accessId?.name;