tangled
alpha
login
or
join now
citizen428.net
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
fix account manager truncation
handle.invalid
5 months ago
b5787c9f
693b373b
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+9
-11
1 changed file
expand all
collapse all
unified
split
src
components
account.tsx
+9
-11
src/components/account.tsx
···
77
77
<For each={Object.keys(sessions)}>
78
78
{(did) => (
79
79
<div class="flex items-center">
80
80
-
<div class="flex w-full items-center justify-between gap-x-2 rounded-lg hover:bg-neutral-200 active:bg-neutral-300 dark:hover:bg-neutral-700 dark:active:bg-neutral-600">
81
81
-
<button
82
82
-
class="flex basis-full items-center justify-between gap-1 truncate p-1"
83
83
-
onclick={() => resumeSession(did as Did)}
84
84
-
>
85
85
-
<span class="truncate">{sessions[did]?.length ? sessions[did] : did}</span>
86
86
-
<Show when={did === agent()?.sub}>
87
87
-
<span class="iconify lucide--check shrink-0"></span>
88
88
-
</Show>
89
89
-
</button>
90
90
-
</div>
80
80
+
<button
81
81
+
class="flex w-full items-center justify-between gap-1 truncate rounded-lg p-1 hover:bg-neutral-200 active:bg-neutral-300 dark:hover:bg-neutral-700 dark:active:bg-neutral-600"
82
82
+
onclick={() => resumeSession(did as Did)}
83
83
+
>
84
84
+
<span class="truncate">{sessions[did]?.length ? sessions[did] : did}</span>
85
85
+
<Show when={did === agent()?.sub}>
86
86
+
<span class="iconify lucide--check shrink-0"></span>
87
87
+
</Show>
88
88
+
</button>
91
89
<A
92
90
href={`/at://${did}`}
93
91
onClick={() => setOpenManager(false)}