diff --git a/core/lib/dal/src/system_dal.rs b/core/lib/dal/src/system_dal.rs index a3af14f90fd..f54d5d13ce7 100644 --- a/core/lib/dal/src/system_dal.rs +++ b/core/lib/dal/src/system_dal.rs @@ -117,8 +117,7 @@ impl SystemDal<'_, '_> { description: row.description, installed_on: row.installed_on, success: row.success, - // TODO improve presentation - checksum: String::from_utf8_lossy(row.checksum.as_ref()).to_string(), + checksum: hex::encode(row.checksum), execution_time: row.execution_time, }) }