web: fix websocket connecting double
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
@ -84,7 +84,6 @@ export class FlowExecutor extends LitElement implements StageHost {
|
|||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
this.ws = new WebsocketClient();
|
this.ws = new WebsocketClient();
|
||||||
this.ws.connect();
|
|
||||||
this.flowSlug = window.location.pathname.split("/")[3];
|
this.flowSlug = window.location.pathname.split("/")[3];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -72,7 +72,6 @@ export class AdminInterface extends LitElement {
|
|||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
this.ws = new WebsocketClient();
|
this.ws = new WebsocketClient();
|
||||||
this.ws.connect();
|
|
||||||
this.sidebarOpen = window.innerWidth >= 1280;
|
this.sidebarOpen = window.innerWidth >= 1280;
|
||||||
window.addEventListener("resize", () => {
|
window.addEventListener("resize", () => {
|
||||||
this.sidebarOpen = window.innerWidth >= 1280;
|
this.sidebarOpen = window.innerWidth >= 1280;
|
||||||
|
|||||||
Reference in New Issue
Block a user