This commit is contained in:
Samuele E. Locatelli
2020-10-16 11:05:23 +02:00
parent bd4cb3504a
commit 5f1ca0699a
3 changed files with 6 additions and 1 deletions
+1
View File
@@ -172,6 +172,7 @@ namespace Active_Client
e.CommandLine.AppendSwitch("--enable-usermedia-screen-capture");
e.CommandLine.AppendSwitch("--no-proxy-server");
e.CommandLine.AppendSwitch("--ignore-certificate-errors-spki-list");
e.CommandLine.AppendSwitch("--ignore-certificate-errors");
e.CommandLine.AppendSwitch("--ignore-ssl-errors");
}
@@ -30,6 +30,9 @@ export default class Processo extends Vue {
get tot(): number {
return store.state.prod.panel.numTarget;
};
get preHot(): number {
return store.state.prod.panel.numPreHot;
};
get blocks(): server.Modblock[] {
return store.state.modules.blocks;
@@ -21,7 +21,8 @@
></soft-key>
</template>
<label v-if="actual != null" >
<div>{{actual}}/</div>
<div v-if="preHot == 0">{{actual}}/</div>
<div v-else>-{{preHot}}/</div>
<button @click="editProd" class="btn" v-if="inAuto && tot != 0">{{tot}}</button>
<button @click="editProd" class="btn" v-if="inAuto && tot == 0">--</button>
<div class="totp" v-if="!inAuto && tot != 0">{{tot}}</div>