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
<For each={Object.keys(sessions)}>
78
{(did) => (
79
<div class="flex items-center">
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
-
<button
82
-
class="flex basis-full items-center justify-between gap-1 truncate p-1"
83
-
onclick={() => resumeSession(did as Did)}
84
-
>
85
-
<span class="truncate">{sessions[did]?.length ? sessions[did] : did}</span>
86
-
<Show when={did === agent()?.sub}>
87
-
<span class="iconify lucide--check shrink-0"></span>
88
-
</Show>
89
-
</button>
90
-
</div>
91
<A
92
href={`/at://${did}`}
93
onClick={() => setOpenManager(false)}
···
77
<For each={Object.keys(sessions)}>
78
{(did) => (
79
<div class="flex items-center">
80
+
<button
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
+
onclick={() => resumeSession(did as Did)}
83
+
>
84
+
<span class="truncate">{sessions[did]?.length ? sessions[did] : did}</span>
85
+
<Show when={did === agent()?.sub}>
86
+
<span class="iconify lucide--check shrink-0"></span>
87
+
</Show>
88
+
</button>
0
0
89
<A
90
href={`/at://${did}`}
91
onClick={() => setOpenManager(false)}