Current session indicator now always visible

Co-authored-by: rekram1-node <rekram1-node@users.noreply.github.com>
This commit is contained in:
opencode-agent[bot] 2025-11-07 05:59:45 +00:00
parent d0f5c825bd
commit 3adbcd73b2

View file

@ -273,8 +273,8 @@ function Option(props: {
const { theme } = useTheme()
return (
<>
<Show when={props.current && !props.active}>
<text flexShrink={0} fg={theme.primary} marginRight={0.5}>
<Show when={props.current}>
<text flexShrink={0} fg={props.active ? theme.background : theme.primary} marginRight={0.5}>
</text>
</Show>