Skip to content

Commit daa874a

Browse files
authored
fix(website): complete the TUI prompt after input (#45)
1 parent 4722ca5 commit daa874a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

website/theme/components/HomeLayout.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,10 @@ function RuntimeExecutionFlow({
10841084
<div>
10851085
<small>{labels.flowTaskLabel}</small>
10861086
<p>
1087-
{labels.flowTask.slice(0, typedCount)}
1087+
{labels.flowTask.slice(
1088+
0,
1089+
activeIndex === 0 ? typedCount : labels.flowTask.length,
1090+
)}
10881091
<i aria-hidden="true" />
10891092
</p>
10901093
</div>

0 commit comments

Comments
 (0)