From 33975d32b78ab25d712d36f22c1dfb82e6517da3 Mon Sep 17 00:00:00 2001 From: FernandaCasali Date: Fri, 19 Apr 2024 11:41:26 -0300 Subject: [PATCH 1/6] fix: heuristic index in table Signed-off-by: FernandaCasali --- src/components/molecules/HeuristicsTable.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/molecules/HeuristicsTable.vue b/src/components/molecules/HeuristicsTable.vue index 387d9416..3d5fc5e0 100644 --- a/src/components/molecules/HeuristicsTable.vue +++ b/src/components/molecules/HeuristicsTable.vue @@ -224,7 +224,8 @@ padding-bottom: 4px !important; " > - {{ item.id }} - {{ item.title }} + {{ item.id + 1 }} + - {{ item.title }}
Date: Fri, 19 Apr 2024 15:17:16 -0300 Subject: [PATCH 2/6] fix: heuristic answer tab view Signed-off-by: FernandaCasali --- src/components/organisms/HeuristicsTestAnswer.vue | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/components/organisms/HeuristicsTestAnswer.vue b/src/components/organisms/HeuristicsTestAnswer.vue index 256503c7..f5e3d38d 100644 --- a/src/components/organisms/HeuristicsTestAnswer.vue +++ b/src/components/organisms/HeuristicsTestAnswer.vue @@ -190,15 +190,7 @@ - - This page needs more than 1 answer to be generated. - -
+
Heuristics Data From 067bb37a0a48e351059fa8c7b25680625142ac52 Mon Sep 17 00:00:00 2001 From: FernandaCasali Date: Fri, 19 Apr 2024 17:32:41 -0300 Subject: [PATCH 3/6] fix: weights tooltips Signed-off-by: FernandaCasali --- src/components/molecules/WeightTable.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/molecules/WeightTable.vue b/src/components/molecules/WeightTable.vue index 843b0515..a0ae930c 100644 --- a/src/components/molecules/WeightTable.vue +++ b/src/components/molecules/WeightTable.vue @@ -106,8 +106,8 @@ /> - H{{ f + (tabs + 1) }} has - {{ importt[r - 1] }} than H {{ tabs + 1 }} From 8487afe994e3cf27725ec51f37c19d42e1824ac4 Mon Sep 17 00:00:00 2001 From: FernandaCasali Date: Fri, 19 Apr 2024 17:37:59 -0300 Subject: [PATCH 4/6] fix: weight tootltip Signed-off-by: FernandaCasali --- src/components/molecules/WeightTable.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/molecules/WeightTable.vue b/src/components/molecules/WeightTable.vue index a0ae930c..92cc4f7f 100644 --- a/src/components/molecules/WeightTable.vue +++ b/src/components/molecules/WeightTable.vue @@ -151,21 +151,21 @@ export default { scores: null, importance: { 'Equal Importance': 1, - 'Moderate Importance': 2, - 'Strong Importance': 3, - 'Very Strong Importance': 4, + 'Moderately Importance': 2, + 'Strongly Importance': 3, + 'Very Strongly Importance': 4, 'Extreme Importance': 5, 'Moderately Less Important': 6, 'Strongly Less Important': 7, 'Very Strongly Less Important': 8, - 'Extremely Less Important': 9, + 'Extremely Less Important': 9 }, importt: [ 'Equal Importance', - 'Moderate Importance', - 'Strong Importance', - 'Very Strong Importance', - 'Extreme Importance', + 'Moderately Importance', + 'Strongly Importance', + 'Very Strongly Importance', + 'Extremely Importance', 'Moderately Less Important', 'Strongly Less Important', 'Very Strongly Less Important', From c0ea086db33231e9a8ec94bf6529ea87c5fe4340 Mon Sep 17 00:00:00 2001 From: FernandaCasali Date: Tue, 23 Apr 2024 11:12:51 -0300 Subject: [PATCH 5/6] add console.logs Signed-off-by: FernandaCasali --- .../organisms/HeuristicsAnalytics.vue | 469 ++++++++++-------- 1 file changed, 273 insertions(+), 196 deletions(-) diff --git a/src/components/organisms/HeuristicsAnalytics.vue b/src/components/organisms/HeuristicsAnalytics.vue index 2099648c..057ab954 100644 --- a/src/components/organisms/HeuristicsAnalytics.vue +++ b/src/components/organisms/HeuristicsAnalytics.vue @@ -1,6 +1,9 @@