Skip to content

Commit

Permalink
dropdown fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteenkamp89 committed Apr 16, 2024
1 parent a8195ae commit bc67229
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ function makeSafeDescription(safe: GnosisSafe) {
<div class="mx-0 my-4 flex flex-col space-y-3 md:mx-4">
<button v-for="(safe, key) in safes" :key="key" @click="select(safe)">
<BaseModalSelectItem
:selected="safe.safeAddress === selected?.safeAddress"
:selected="
safe.safeAddress === selected?.safeAddress &&
safe.network === selected.network
"
:title="safe.safeName"
:description="makeSafeDescription(safe)"
/>
Expand Down

0 comments on commit bc67229

Please sign in to comment.