|
@@ -610,7 +610,7 @@ export function SessionTurn(
|
|
|
<Match when={working()}>
|
|
<Match when={working()}>
|
|
|
<Spinner />
|
|
<Spinner />
|
|
|
</Match>
|
|
</Match>
|
|
|
- <Match when={true}>
|
|
|
|
|
|
|
+ <Match when={!props.stepsExpanded}>
|
|
|
<svg
|
|
<svg
|
|
|
width="10"
|
|
width="10"
|
|
|
height="10"
|
|
height="10"
|
|
@@ -627,6 +627,23 @@ export function SessionTurn(
|
|
|
/>
|
|
/>
|
|
|
</svg>
|
|
</svg>
|
|
|
</Match>
|
|
</Match>
|
|
|
|
|
+ <Match when={props.stepsExpanded}>
|
|
|
|
|
+ <svg
|
|
|
|
|
+ width="10"
|
|
|
|
|
+ height="10"
|
|
|
|
|
+ viewBox="0 0 10 10"
|
|
|
|
|
+ fill="none"
|
|
|
|
|
+ xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
+ class="text-icon-base"
|
|
|
|
|
+ >
|
|
|
|
|
+ <path
|
|
|
|
|
+ d="M8.125 8.125H1.875L5 1.875L8.125 8.125Z"
|
|
|
|
|
+ fill="currentColor"
|
|
|
|
|
+ stroke="currentColor"
|
|
|
|
|
+ stroke-linejoin="round"
|
|
|
|
|
+ />
|
|
|
|
|
+ </svg>
|
|
|
|
|
+ </Match>
|
|
|
</Switch>
|
|
</Switch>
|
|
|
<Switch>
|
|
<Switch>
|
|
|
<Match when={retry()}>
|
|
<Match when={retry()}>
|