Added Backend sessions view to backend index.

This commit is contained in:
Abdulmhsen B. A. A.
2024-05-27 17:16:24 +03:00
parent f9b7a9cdd2
commit dbd5fd39ca
3 changed files with 130 additions and 1 deletions

View File

@@ -255,7 +255,6 @@ const makeGUIDLink = (type, source, guid, data) => {
* @returns {string} The formatted duration.
*/
const formatDuration = (milliseconds) => {
console.log(milliseconds)
milliseconds = parseInt(milliseconds)
let seconds = Math.floor(milliseconds / 1000);
let minutes = Math.floor(seconds / 60);