mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user