diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/FileEncryptionTable.tsx b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/FileEncryptionTable.tsx index cfb9ab3f3..340238891 100644 --- a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/FileEncryptionTable.tsx +++ b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/FileEncryptionTable.tsx @@ -54,13 +54,9 @@ function renderFileEncryptionStats(successful: number, total: number) { let textClassName = '' if(successful > 0) { - if (successful === total) { textClassName = 'text-danger' - } else { - textClassName = 'text-warning' - } } else { - textClassName = 'text-success' + textClassName = 'text-dark' } return (
{successful} out of {total}
);