TSK-1956: Meldung bei Owner: Access ID is not valid (#2002)

This commit is contained in:
Franzi321 2022-09-13 13:47:11 +02:00 committed by GitHub
parent 316c173663
commit e1db9f0843
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;