tangled
alpha
login
or
join now
vielle.dev
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
fix tooltip capitalization
handle.invalid
6 months ago
ec80ecbc
4e50dac6
+5
-5
5 changed files
expand all
collapse all
unified
split
src
components
navbar.tsx
tooltip.tsx
layout.tsx
views
collection.tsx
repo.tsx
+1
-1
src/components/navbar.tsx
···
137
137
</Show>
138
138
</div>
139
139
</div>
140
140
-
<Tooltip text={showHandle() ? "Show DID" : "Show Handle"}>
140
140
+
<Tooltip text={showHandle() ? "Show DID" : "Show handle"}>
141
141
<button
142
142
onclick={() => {
143
143
localStorage.showHandle = !showHandle();
+1
-1
src/components/tooltip.tsx
···
8
8
<Show when={!isTouchDevice}>
9
9
<span
10
10
style={`transform: translate(-50%, 28px)`}
11
11
-
class={`dark:shadow-dark-900/80 pointer-events-none absolute left-[50%] z-10 hidden min-w-fit rounded border-[0.5px] border-neutral-300 bg-white p-1 text-center font-sans text-xs whitespace-nowrap text-neutral-900 shadow-md select-none group-hover/tooltip:inline dark:border-neutral-600 dark:bg-neutral-800 dark:text-neutral-200`}
11
11
+
class={`dark:shadow-dark-900/80 pointer-events-none absolute left-[50%] z-10 hidden min-w-fit rounded border-[0.5px] border-neutral-300 bg-white p-1 text-center font-sans text-xs whitespace-nowrap text-neutral-900 shadow-md select-none group-hover/tooltip:inline first-letter:capitalize dark:border-neutral-600 dark:bg-neutral-800 dark:text-neutral-200`}
12
12
>
13
13
{props.text}
14
14
</span>
+1
-1
src/layout.tsx
···
37
37
<A href="/jetstream" class="iconify lucide--radio-tower text-xl"></A>
38
38
</Tooltip>
39
39
<Show when={agent()}>
40
40
-
<Tooltip text="Go to Repo">
40
40
+
<Tooltip text="Go to repo">
41
41
<A href={`/at://${agent()?.sub}`} class="iconify lucide--book-user text-xl"></A>
42
42
</Tooltip>
43
43
</Show>
+1
-1
src/views/collection.tsx
···
188
188
/>
189
189
<Show when={batchDelete()}>
190
190
<Tooltip
191
191
-
text="Select All"
191
191
+
text="Select all"
192
192
children={
193
193
<button onclick={() => selectAll()} class="flex items-center">
194
194
<span class="iconify lucide--copy-check text-lg"></span>
+1
-1
src/views/repo.tsx
···
365
365
</div>
366
366
<div class="text-sm">{didDocument().id}</div>
367
367
</div>
368
368
-
<Tooltip text="DID Document">
368
368
+
<Tooltip text="DID document">
369
369
<a
370
370
href={
371
371
did.startsWith("did:plc") ?