diff --git a/src/frontend/src/CustomNodes/GenericNode/index.tsx b/src/frontend/src/CustomNodes/GenericNode/index.tsx index 094791a26..042757832 100644 --- a/src/frontend/src/CustomNodes/GenericNode/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/index.tsx @@ -494,7 +494,7 @@ export default function GenericNode({ ) : !validationStatus ? ( {STATUS_BUILD} ) : ( -
+
{lastRunTime && (
@@ -512,14 +512,16 @@ export default function GenericNode({

- + Output - {validationStatus?.params - .split("\n") - .map((line, index) => ( -
{line}
- ))} +
+ {validationStatus?.params + .split("\n") + .map((line, index) => ( +
{line}
+ ))} +
) }