mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 14:57:22 +03:00
Applied some improvements in manifest
This commit is contained in:
parent
f027ca29d5
commit
a78d0b9b20
2 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ export class ServersService {
|
|||
}
|
||||
|
||||
listServers = () => {
|
||||
return this.storage.get(SERVERS_STORAGE_KEY);
|
||||
return this.storage.get(SERVERS_STORAGE_KEY) || [];
|
||||
};
|
||||
|
||||
findServerById = serverId => {
|
||||
|
|
Loading…
Reference in a new issue