From 91e63861783de448ab94451405d8e57af68095cc Mon Sep 17 00:00:00 2001 From: dcore94 Date: Mon, 2 Dec 2024 14:58:28 +0100 Subject: [PATCH] inverted link and size --- ccp/js/executionhistorycontroller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 426996f..c883698 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -1003,7 +1003,7 @@ class CCPExecutionHistory extends HTMLElement { var i = s === 0 ? 0 : Math.floor(Math.log(s) / Math.log(1024)); size = `[${+((s / Math.pow(1024, i)).toFixed(2)) * 1 + ' ' + ['B', 'kB', 'MB', 'GB', 'TB'][i]}]` } - e.innerHTML = `${size} ${d.path}` + e.innerHTML = `${d.path}${size} ` } } ]