@@ -821,12 +821,7 @@ export function RunFooterView(props: RunFooterViewProps) {
821821 flexShrink = { 0 }
822822 backgroundColor = { statuslineBackground ( ) }
823823 >
824- < box
825- paddingLeft = { 1 }
826- paddingRight = { 1 }
827- backgroundColor = { theme ( ) . statusAccent }
828- flexShrink = { 0 }
829- >
824+ < box paddingLeft = { 1 } paddingRight = { 1 } backgroundColor = { theme ( ) . statusAccent } flexShrink = { 0 } >
830825 < text wrapMode = "none" truncate >
831826 < span style = { { fg : modeColor ( ) , bold : true } } > { modeLabel ( ) } </ span >
832827 </ text >
@@ -848,13 +843,7 @@ export function RunFooterView(props: RunFooterViewProps) {
848843 </ box >
849844 </ Show >
850845
851- < text
852- fg = { statusColor ( ) }
853- wrapMode = "none"
854- truncate
855- flexGrow = { 1 }
856- flexShrink = { 1 }
857- >
846+ < text fg = { statusColor ( ) } wrapMode = "none" truncate flexGrow = { 1 } flexShrink = { 1 } >
858847 < Show when = { busy ( ) && ! exiting ( ) } fallback = { statusText ( ) } >
859848 < Show when = { interruptLabel ( ) } >
860849 { ( label ) => < span style = { { fg : armed ( ) ? statusColor ( ) : theme ( ) . muted } } > { label ( ) } </ span > }
@@ -865,11 +854,7 @@ export function RunFooterView(props: RunFooterViewProps) {
865854 </ box >
866855
867856 < Show when = { activityMeta ( ) . length > 0 } >
868- < box
869- paddingRight = { 1 }
870- backgroundColor = "transparent"
871- flexShrink = { 1 }
872- >
857+ < box paddingRight = { 1 } backgroundColor = "transparent" flexShrink = { 1 } >
873858 < text fg = { theme ( ) . muted } wrapMode = "none" truncate >
874859 { activityMeta ( ) }
875860 </ text >
@@ -878,11 +863,7 @@ export function RunFooterView(props: RunFooterViewProps) {
878863
879864 < Show when = { responsive ( ) . statusline . showModel && modelStatus ( ) } >
880865 { ( info ) => (
881- < box
882- paddingRight = { 1 }
883- backgroundColor = "transparent"
884- flexShrink = { 0 }
885- >
866+ < box paddingRight = { 1 } backgroundColor = "transparent" flexShrink = { 0 } >
886867 < text fg = { theme ( ) . text } wrapMode = "none" >
887868 { info ( ) . model }
888869 < Show when = { info ( ) . provider } >
@@ -902,12 +883,7 @@ export function RunFooterView(props: RunFooterViewProps) {
902883
903884 < For each = { contextHints ( ) } >
904885 { ( hint , index ) => (
905- < box
906- paddingRight = { 1 }
907- backgroundColor = "transparent"
908- flexShrink = { 0 }
909- maxWidth = { 24 }
910- >
886+ < box paddingRight = { 1 } backgroundColor = "transparent" flexShrink = { 0 } maxWidth = { 24 } >
911887 < text fg = { theme ( ) . text } wrapMode = "none" truncate >
912888 < Show when = { index ( ) > 0 || ( ( hasActivityMeta ( ) || hasModelStatus ( ) ) && index ( ) === 0 ) } >
913889 { sectionSeparator ( ) }
@@ -921,12 +897,7 @@ export function RunFooterView(props: RunFooterViewProps) {
921897
922898 < Show when = { commandHint ( ) } >
923899 { ( hint ) => (
924- < box
925- paddingRight = { 1 }
926- backgroundColor = "transparent"
927- flexShrink = { 0 }
928- maxWidth = { 18 }
929- >
900+ < box paddingRight = { 1 } backgroundColor = "transparent" flexShrink = { 0 } maxWidth = { 18 } >
930901 < text fg = { theme ( ) . text } wrapMode = "none" truncate >
931902 < Show when = { hasActivityMeta ( ) || hasModelStatus ( ) || hasContextHints ( ) } >
932903 { sectionSeparator ( ) }
0 commit comments