fix(tui): separate question checkmark labels (#28558)

This commit is contained in:
Kit Langton
2026-05-20 21:35:59 -04:00
committed by GitHub
parent 12bbe84360
commit ddd6eb4496
5 changed files with 66 additions and 14 deletions
@@ -375,7 +375,7 @@ export function QuestionPrompt(props: { request: QuestionRequest }) {
</text>
</box>
<Show when={!multi()}>
<text fg={theme.success}>{picked() ? "✓" : ""}</text>
<text fg={theme.success}>{picked() ? " ✓" : ""}</text>
</Show>
</box>
@@ -408,7 +408,7 @@ export function QuestionPrompt(props: { request: QuestionRequest }) {
</box>
<Show when={!multi()}>
<text fg={theme.success}>{customPicked() ? "✓" : ""}</text>
<text fg={theme.success}>{customPicked() ? " ✓" : ""}</text>
</Show>
</box>
<Show when={store.editing}>