diff --git a/Client/Program.cs b/Client/Program.cs index 3c28d99f..902eeb1b 100644 --- a/Client/Program.cs +++ b/Client/Program.cs @@ -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"); } diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.ts index b6dc6ff8..52d7f4ed 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.ts @@ -33,6 +33,7 @@ export default class Combo extends Vue { opened: boolean = false; showList() { + if(!this.value.status.enabled) return; this.opened = !this.opened; this.$nextTick(() => lottie.searchAnimations()); diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.vue index f1f9533f..fdf723ea 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/components/combo.vue @@ -3,7 +3,7 @@
{{currentValue}} @@ -30,6 +30,11 @@