We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9106a83 commit c1adbf6Copy full SHA for c1adbf6
seatunnel-engine/seatunnel-engine-ui/src/views/jobs/detail.tsx
@@ -237,7 +237,9 @@ export default defineComponent({
237
/>
238
</NTabPane>
239
<NTabPane name="Exception" tab="Exception">
240
- {job.errorMsg}
+ <pre style="white-space: pre-wrap; word-wrap: break-word; background-color: #f5f5f5; padding: 12px; border-radius: 4px; overflow: auto; max-height: 600px; font-family: monospace; line-height: 1.5;">
241
+ {job.errorMsg}
242
+ </pre>
243
244
<NTabPane name="Configuration" tab="Configuration">
245
<Configuration data={job.envOptions || job.jobDag.envOptions}></Configuration>
0 commit comments