Compare commits

...

1 Commits

Author SHA1 Message Date
Mike Salvatore 07cfc34a8e UI: Increase the map update frequency by 5x 2022-05-23 09:19:44 -04:00
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class MapPageComponent extends AuthComponent {
componentDidMount() {
this.getNodeStateListFromServer();
this.updateMapFromServer();
this.interval = setInterval(this.updateMapFromServer, 5000);
this.interval = setInterval(this.updateMapFromServer, 1000);
}
componentWillUnmount() {