fix(tui): separate question checkmark labels (#28558)
This commit is contained in:
parent
12bbe84360
commit
ddd6eb4496
5 changed files with 66 additions and 14 deletions
|
|
@ -416,7 +416,7 @@ export function RunQuestionBody(props: {
|
|||
</text>
|
||||
</box>
|
||||
<Show when={!info()?.multiple}>
|
||||
<text fg={props.theme.success}>{hit() ? "✓" : ""}</text>
|
||||
<text fg={props.theme.success}>{hit() ? " ✓" : ""}</text>
|
||||
</Show>
|
||||
</box>
|
||||
<box paddingLeft={3}>
|
||||
|
|
@ -466,7 +466,7 @@ export function RunQuestionBody(props: {
|
|||
</text>
|
||||
</box>
|
||||
<Show when={!info()?.multiple}>
|
||||
<text fg={props.theme.success}>{picked() ? "✓" : ""}</text>
|
||||
<text fg={props.theme.success}>{picked() ? " ✓" : ""}</text>
|
||||
</Show>
|
||||
</box>
|
||||
<Show
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue