We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 731e1d6 commit a9d6840Copy full SHA for a9d6840
1 file changed
src/components/TaskPanel.tsx
@@ -802,6 +802,7 @@ export function TaskPanel(props: TaskPanelProps) {
802
<Show when={a().status === 'exited'}>
803
<div
804
class="exit-badge"
805
+ title={a().lastOutput.length ? a().lastOutput.join('\n') : undefined}
806
style={{
807
position: 'absolute',
808
top: '8px',
@@ -818,7 +819,11 @@ export function TaskPanel(props: TaskPanelProps) {
818
819
gap: '8px',
820
}}
821
>
- <span>Process exited ({a().exitCode ?? '?'})</span>
822
+ <span>
823
+ {a().signal === 'spawn_failed'
824
+ ? 'Failed to start'
825
+ : `Process exited (${a().exitCode ?? '?'})`}
826
+ </span>
827
<button
828
onClick={(e) => {
829
e.stopPropagation();
0 commit comments