Skip to content

Commit

Permalink
fix: suppress auto-expand in setup page
Browse files Browse the repository at this point in the history
  • Loading branch information
dtribble authored and michaelfig committed Nov 12, 2020
1 parent af1648b commit 875af56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/dapp-svelte-wallet/ui/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
Instances
Installations -->
<div class="dapps">
<Dapps />
<Dapps expandDefault={false} />
</div>
<div class="issuers">
<Issuers />
Expand Down
4 changes: 3 additions & 1 deletion packages/dapp-svelte-wallet/ui/src/Dapps.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
import Dapp from "./Dapp.svelte";
import { dapps } from './store';
export let expandDefault = true;
</script>

<ListCard items={$dapps} expandDefault={true}>
<ListCard items={$dapps} expandDefault={expandDefault}>
<div slot="title">
<Card.Title title="Dapps" />
</div>
Expand Down

0 comments on commit 875af56

Please sign in to comment.