Change frontend.config.done to frontend.ready

This commit is contained in:
Kristóf Tóth 2019-08-28 13:48:14 +02:00
parent 5a8f653f1a
commit 48a8facd50
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ export class ConfigReadyService {
const recvdConfigDone = new Subject<void>();
this.readyNotifiers.push(recvdConfigDone);
this.webSocketService.observeKey<any>('frontend.config.done').subscribe(() => {
this.webSocketService.observeKey<any>('frontend.ready').subscribe(() => {
recvdConfigDone.next();
recvdConfigDone.complete();
});