File tree Expand file tree Collapse file tree
src/renderer/components/Experiment/Interactive Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -316,6 +316,11 @@ export default function InteractiveJobCard({
316316 job . status === 'INTERACTIVE' ? 99 : undefined
317317 }
318318 />
319+ { tunnelTimedOut && ! tunnelReady && (
320+ < Typography level = "body-xs" color = "warning" sx = { { mt : 0.5 } } >
321+ Startup may have stalled. Check Logs.
322+ </ Typography >
323+ ) }
319324 </ Box >
320325
321326 { showActions && (
@@ -332,21 +337,15 @@ export default function InteractiveJobCard({
332337 </ Button >
333338 < Button
334339 variant = "soft"
335- color = {
336- tunnelReady
337- ? 'success'
338- : tunnelTimedOut
339- ? 'warning'
340- : 'neutral'
341- }
340+ color = { tunnelReady ? 'success' : 'neutral' }
342341 size = "sm"
343342 disabled = { ! tunnelReady }
344343 onClick = { ( ) => setInteractOpen ( true ) }
345344 >
346345 { tunnelReady
347346 ? 'Interact'
348347 : tunnelTimedOut
349- ? 'May have failed — check Logs '
348+ ? 'Waiting… '
350349 : 'Launching…' }
351350 </ Button >
352351 </ Stack >
You can’t perform that action at this time.
0 commit comments