Trying to fix ws issue
This commit is contained in:
parent
6bbff50996
commit
a6e15d6b64
8 changed files with 15 additions and 19 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -6858,11 +6858,7 @@ label.panel-block {
|
||||||
margin: -.8em auto; }
|
margin: -.8em auto; }
|
||||||
|
|
||||||
.is-fullheight {
|
.is-fullheight {
|
||||||
min-height: calc(100vh - ( 3.25rem ));
|
min-height: calc(100vh - ( 3.25rem )); }
|
||||||
max-height: calc(100vh - ( 3.25rem ));
|
|
||||||
height: calc(100vh - ( 3.25rem )); }
|
|
||||||
.is-fullheight .column {
|
|
||||||
overflow-y: auto; }
|
|
||||||
|
|
||||||
.is-fullwidth {
|
.is-fullwidth {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
|
|
|
@ -128,11 +128,11 @@ $sizes: (
|
||||||
|
|
||||||
.is-fullheight{
|
.is-fullheight{
|
||||||
min-height: calc(100vh - ( #{$navbar-height} ) );
|
min-height: calc(100vh - ( #{$navbar-height} ) );
|
||||||
max-height: calc(100vh - ( #{$navbar-height} ) );
|
// max-height: calc(100vh - ( #{$navbar-height} ) );
|
||||||
height: calc(100vh - ( #{$navbar-height} ) );
|
// height: calc(100vh - ( #{$navbar-height} ) );
|
||||||
.column{
|
// .column{
|
||||||
overflow-y: auto;
|
// overflow-y: auto;
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-fullwidth{
|
.is-fullwidth{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="app">
|
<div class="app">
|
||||||
<!-- <Header :appName="appName" /> -->
|
<!-- <Header :appName="appName" /> -->
|
||||||
<TopNavbar />
|
<TopNavbar :ws="this.ws" />
|
||||||
<div class="loading" v-if="loading">
|
<div class="loading" v-if="loading">
|
||||||
<Loading />
|
<Loading />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -105,12 +105,12 @@ import WebsocketService from "../../home/ws/websocket.service";
|
||||||
import Modal from "../../shared/components/Modal/Modal.vue";
|
import Modal from "../../shared/components/Modal/Modal.vue";
|
||||||
export default {
|
export default {
|
||||||
name: "TobNavbar",
|
name: "TobNavbar",
|
||||||
|
props: ["ws"],
|
||||||
components: {
|
components: {
|
||||||
Modal
|
Modal
|
||||||
},
|
},
|
||||||
async created() {
|
async created() {
|
||||||
const ws = await WebsocketService.getInstance();
|
this.callManager = this.ws.callManager;
|
||||||
this.callManager = ws.callManager;
|
|
||||||
},
|
},
|
||||||
updated() {
|
updated() {
|
||||||
if (!this.inCall) {
|
if (!this.inCall) {
|
||||||
|
|
Reference in a new issue