diff --git a/frontend/src/components/sidebar/Sidebar.tsx b/frontend/src/components/sidebar/Sidebar.tsx index b557456..288b3f8 100644 --- a/frontend/src/components/sidebar/Sidebar.tsx +++ b/frontend/src/components/sidebar/Sidebar.tsx @@ -167,14 +167,21 @@ function Sidebar({ )} -
+

Console

- {executionConsole.map((line, index) => ( -
- {line} + {Object.entries(executionConsoles).map(([index, lines]) => ( +
+ {lines.map((line, lineIndex) => ( +
+ {`${index}:${ + lineIndex + 1 + }`} + {line} +
+ ))}
))}