Manifest changes

This commit is contained in:
Alexander Bell 2018-09-22 11:19:21 +02:00
parent 3258f2666f
commit 568ff2451a
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"short_name": "alexbell.ninja",
"name": "alexbell.ninja",
"icons": [
{
"src": "favicon.ico",

View File

@ -187,7 +187,7 @@ const PasswordManager = inject("rootStore") ( observer(
}
dataList.forEach((element, index) => {
if(element.url.includes(this.state.search)) {
if(element.url.toLowerCase().includes(this.state.search.toLowerCase())) {
const copyLogin = () => {
copyToClipboard(decrypt(element.login, this.state.key));
}