aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui
diff options
context:
space:
mode:
Diffstat (limited to 'lib/srtgui')
-rw-r--r--lib/srtgui/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/srtgui/views.py b/lib/srtgui/views.py
index 7f819fd1..079fc670 100644
--- a/lib/srtgui/views.py
+++ b/lib/srtgui/views.py
@@ -1836,6 +1836,7 @@ def xhr_cve_commit(request):
description = cve.description,
status = cve.status,
priority = cve.priority,
+ comments = cve.comments,
)
vulnerability.save()
history_update.append(Update.ATTACH_INV % (vname))
@@ -1969,6 +1970,7 @@ def xhr_vulnerability_commit(request):
outcome = vulnerability_obj.outcome,
priority = vulnerability_obj.priority,
product = product_obj,
+ comments = vulnerability_obj.comments,
)
vul2inv = VulnerabilityToInvestigation.objects.create(vulnerability=vulnerability_obj,investigation=investigation_obj)
vul2inv.save()