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 navbar label condition
handle.invalid
6 months ago
ce3f3a68
8fa01a06
+7
-2
2 changed files
expand all
collapse all
unified
split
src
components
navbar.tsx
views
labels.tsx
+6
-1
src/components/navbar.tsx
···
151
</Tooltip>
152
</div>
153
</Show>
154
-
<Show when={props.params.repo in labelerCache && !props.params.collection}>
0
0
0
0
0
155
<div class="mt-1 flex items-center gap-2">
156
<span class="iconify lucide--tag text-lg"></span>
157
<A
···
151
</Tooltip>
152
</div>
153
</Show>
154
+
<Show
155
+
when={
156
+
!props.params.collection &&
157
+
(props.params.repo in labelerCache || location.pathname.endsWith("/labels"))
158
+
}
159
+
>
160
<div class="mt-1 flex items-center gap-2">
161
<span class="iconify lucide--tag text-lg"></span>
162
<A
+1
-1
src/views/labels.tsx
···
80
spellcheck={false}
81
rows={3}
82
value={searchParams.uriPatterns ?? "*"}
83
-
class="dark:bg-dark-100 dark:shadow-dark-800 mb-1 grow rounded-lg bg-white px-2 py-1 shadow-xs focus:outline-[1.5px] focus:outline-neutral-900 dark:focus:outline-neutral-200"
84
/>
85
<div class="flex justify-center">
86
<Show when={!response.loading}>
···
80
spellcheck={false}
81
rows={3}
82
value={searchParams.uriPatterns ?? "*"}
83
+
class="dark:bg-dark-100 dark:shadow-dark-800 grow rounded-lg border-[0.5px] border-neutral-300 bg-white px-2 py-1 shadow-xs focus:outline-[1.5px] focus:outline-neutral-900 dark:border-neutral-700 dark:focus:outline-neutral-200"
84
/>
85
<div class="flex justify-center">
86
<Show when={!response.loading}>