|
|
@@ -593,10 +593,16 @@ export function SessionTurn(
|
|
|
<span data-slot="session-turn-retry-attempt">(#{retry()?.attempt})</span>
|
|
|
</Match>
|
|
|
<Match when={working()}>
|
|
|
- {store.status ?? i18n.t("ui.sessionTurn.status.consideringNextSteps")}
|
|
|
+ <span data-slot="session-turn-status-text">
|
|
|
+ {store.status ?? i18n.t("ui.sessionTurn.status.consideringNextSteps")}
|
|
|
+ </span>
|
|
|
+ </Match>
|
|
|
+ <Match when={props.stepsExpanded}>
|
|
|
+ <span data-slot="session-turn-status-text">{i18n.t("ui.sessionTurn.steps.hide")}</span>
|
|
|
+ </Match>
|
|
|
+ <Match when={!props.stepsExpanded}>
|
|
|
+ <span data-slot="session-turn-status-text">{i18n.t("ui.sessionTurn.steps.show")}</span>
|
|
|
</Match>
|
|
|
- <Match when={props.stepsExpanded}>{i18n.t("ui.sessionTurn.steps.hide")}</Match>
|
|
|
- <Match when={!props.stepsExpanded}>{i18n.t("ui.sessionTurn.steps.show")}</Match>
|
|
|
</Switch>
|
|
|
<span aria-hidden="true">·</span>
|
|
|
<span aria-live="off">{store.duration}</span>
|