Applied some improvements in manifest

This commit is contained in:
Alejandro Celaya 2018-07-26 21:01:12 +02:00
parent f027ca29d5
commit a78d0b9b20
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
"name": "Shlink web client",
"icons": [
{
"src": "favicon.ico",
"src": "./favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
@ -11,5 +11,5 @@
"start_url": "./index.html",
"display": "standalone",
"theme_color": "#4696e5",
"background_color": "#ffffff"
"background_color": "#4696e5"
}

View file

@ -9,7 +9,7 @@ export class ServersService {
}
listServers = () => {
return this.storage.get(SERVERS_STORAGE_KEY);
return this.storage.get(SERVERS_STORAGE_KEY) || [];
};
findServerById = serverId => {