Search fix. Channel update.

This commit is contained in:
softsimon
2022-05-26 18:23:57 +04:00
parent 30bf725020
commit fee6d3c4e9
5 changed files with 14 additions and 6 deletions

View File

@@ -7,10 +7,14 @@ import { WebsocketService } from 'src/app/services/websocket.service';
styleUrls: ['./lightning-wrapper.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class LightningWrapperComponent {
export class LightningWrapperComponent implements OnInit {
constructor(
private websocketService: WebsocketService,
) { }
ngOnInit() {
this.websocketService.want(['blocks']);
}
}