fix(desktop): added inverted svg for steps expanded for nice UX (#10462)
Co-authored-by: opencode <opencode@sst.dev> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
This commit is contained in:
@@ -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()}>
|
||||||
|
|||||||
Reference in New Issue
Block a user