Skip to content

Commit 5078de1

Browse files
committed
fix shell UI triggering logic
1 parent ac93f99 commit 5078de1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/routes/_app.compute.systems.$systemName.jobs.$jobId.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const loader: LoaderFunction = async ({ request, params }: LoaderFunction
7171
})
7272
if (jobs && jobs.length !== 0) {
7373
const job = jobs[0]
74-
if (job.script && job.script !== 'NONE') {
74+
if (job.script || job.standardError || job.standardOutput) {
7575
layoutMode = 'fixed-right'
7676
}
7777
}

0 commit comments

Comments
 (0)