Adding mini-graphs on dashboard.

This commit is contained in:
softsimon
2020-09-26 22:46:26 +07:00
parent 43314c2283
commit 3dedf1e3e1
13 changed files with 148 additions and 37 deletions

View File

@@ -216,6 +216,9 @@ export class WebsocketService {
}
want(data: string[]) {
if (data === this.lastWant) {
return;
}
this.websocketSubject.next({action: 'want', data: data});
this.lastWant = data;
}