mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 23:07:26 +03:00
Fixed default servers object value
This commit is contained in:
parent
5517fcdde5
commit
7f9744cef2
1 changed files with 1 additions and 1 deletions
|
@ -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