Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cycode/cli/printers/rich_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def __add_sca_scan_related_rows(details_table: Table, detection: 'Detection') ->
details_table.add_row('Version', detection_details.get('package_version'))

if detection.has_alert:
patched_version = detection_details['alert'].get('patched_version')
patched_version = detection_details['alert'].get('first_patched_version')
details_table.add_row('First patched version', patched_version or 'Not fixed')

dependency_path = detection_details.get('dependency_paths')
Expand Down