We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5457fd1 commit d7c17b9Copy full SHA for d7c17b9
cycode/cli/printers/rich_printer.py
@@ -91,7 +91,7 @@ def __add_sca_scan_related_rows(details_table: Table, detection: 'Detection') ->
91
details_table.add_row('Version', detection_details.get('package_version'))
92
93
if detection.has_alert:
94
- patched_version = detection_details['alert'].get('patched_version')
+ patched_version = detection_details['alert'].get('first_patched_version')
95
details_table.add_row('First patched version', patched_version or 'Not fixed')
96
97
dependency_path = detection_details.get('dependency_paths')
0 commit comments