From 314102266051aa1be35d95d096f91feb3a9be15f Mon Sep 17 00:00:00 2001 From: multiflexi Date: Thu, 25 Jul 2024 13:13:10 +0200 Subject: [PATCH] Fix missing value_description definition --- src/gui/src/components/analyze/NewReportItem.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/src/components/analyze/NewReportItem.vue b/src/gui/src/components/analyze/NewReportItem.vue index 465d2121..69c8f6f1 100644 --- a/src/gui/src/components/analyze/NewReportItem.vue +++ b/src/gui/src/components/analyze/NewReportItem.vue @@ -684,6 +684,7 @@ export default { if (data.remote_report_items[l].attributes[k].attribute_group_item_title === this.selected_type.attribute_groups[i].attribute_group_items[j].title) { let value = data.remote_report_items[l].attributes[k].value + let value_description = data.remote_report_items[l].attributes[k].value_description if (this.selected_type.attribute_groups[i].attribute_group_items[j].attribute.type === 'CPE') { value = value.replace("%", "*") } else if (this.selected_type.attribute_groups[i].attribute_group_items[j].attribute.type === 'BOOLEAN') {