TSK-1956: Meldung bei Owner: Access ID is not valid (#2002)
This commit is contained in:
parent
316c173663
commit
e1db9f0843
|
@ -86,7 +86,7 @@ export class TypeAheadComponent implements OnInit, OnDestroy {
|
||||||
.pipe(take(1))
|
.pipe(take(1))
|
||||||
.subscribe((accessIds) => {
|
.subscribe((accessIds) => {
|
||||||
this.filteredAccessIds = 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') {
|
if (typeof accessId !== 'undefined') {
|
||||||
this.name = accessId?.name;
|
this.name = accessId?.name;
|
||||||
|
|
Loading…
Reference in New Issue