From 4ed8ba11934dd866c2f8365bed81003220600e32 Mon Sep 17 00:00:00 2001 From: rozetko Date: Mon, 27 Dec 2021 18:32:35 +0300 Subject: [PATCH] do not display anything below the Analytic Status if analytic is not available --- client/src/views/Home.vue | 88 +++++++++++++++++++++------------------ 1 file changed, 47 insertions(+), 41 deletions(-) diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue index 2f06222..e73cebd 100644 --- a/client/src/views/Home.vue +++ b/client/src/views/Home.vue @@ -2,50 +2,53 @@
Vue logo - + -
- Analytic unit type: -

-
-
-
- Threshold: -

-
-
- Hold
S
to label patterns; - Hold
A
to label anti patterns
- Hold
D
to delete patterns -
-
- Correlation score: -
- Anti correlation score: -
- Model score: -
- Threshold score: -

- + +
@@ -140,6 +143,9 @@ export default defineComponent({ }, analyticUnitConfig() { return this.$store.state.analyticUnitConfig; + }, + analyticStatus() { + return this.$store.state.analyticStatus; } } });