Update frontend/src/pages/pam/PamSessionsByIDPage/components/PamSessionLogsSection.utils.ts

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Andre
2025-11-01 16:00:09 -04:00
committed by GitHub
parent d870c047f9
commit 050bc2d66b

View File

@@ -35,7 +35,7 @@ export const formatLogContent = (text: string | null | undefined): string => {
return match ? match[0].length : 0;
});
const minIndentation = Math.min(...indentations);
const minIndentation = indentations.length > 0 ? Math.min(...indentations) : 0;
// Remove the common indentation from all lines
if (minIndentation > 0) {