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", "short_name": "alexbell.ninja",
"name": "Create React App Sample", "name": "alexbell.ninja",
"icons": [ "icons": [
{ {
"src": "favicon.ico", "src": "favicon.ico",

View File

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