Skip to content

Commit

Permalink
Fixes from Laura's review
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman committed Sep 17, 2024
1 parent c560926 commit c036cdc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 1 addition & 3 deletions server/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/temporalio/ui-server/v2

go 1.21

toolchain go1.23.0
go 1.20

require (
github.com/coreos/go-oidc/v3 v3.1.0
Expand Down
9 changes: 6 additions & 3 deletions src/lib/holocene/accordion/accordion.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
type="button"
on:click={toggleAccordion}
>
<div class="space-between flex w-full flex-row items-center">
<h3 class="flex w-full items-center gap-2">
<div class="flex w-full flex-row items-center justify-between gap-2">
<h3 class="flex items-center gap-2">
{#if icon}<Icon name={icon} />{/if}
{title}
<slot name="summary" />
Expand All @@ -70,7 +70,10 @@
>
<slot name="action" />
</div>
<Icon class="m-2" name={open ? 'chevron-up' : 'chevron-down'} />
<Icon
class="m-2 shrink-0"
name={open ? 'chevron-up' : 'chevron-down'}
/>
</div>
<p class="flex items-center">
{#if error}
Expand Down

0 comments on commit c036cdc

Please sign in to comment.