forked from Kispi/Core
fix(webapp): filter in lower case
This commit is contained in:
parent
86ef3d989f
commit
10399aa812
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ function filterEvent(event: Event) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
data.value = data.value.filter((account: IAccountData) => {
|
data.value = data.value.filter((account: IAccountData) => {
|
||||||
return `${account.firstName} ${account.lastName}`.toLocaleLowerCase().includes(input);
|
return `${account.firstName} ${account.lastName}`.toLocaleLowerCase().includes(input.toLocaleLowerCase());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue