+4
-8
src/components/navbar.tsx
+4
-8
src/components/navbar.tsx
···
37
</Tooltip>
38
<Show when={pds()}>
39
<Show when={props.params.repo}>
40
-
<A
41
-
end
42
-
href={pds()!}
43
-
inactiveClass="text-blue-400 w-full hover:underline active:underline"
44
-
>
45
{pds()}
46
</A>
47
</Show>
···
83
<A
84
end
85
href={`/at://${props.params.repo}`}
86
-
inactiveClass="text-blue-400 hover:underline active:underline w-full"
87
>
88
{showHandle() ? handle() : props.params.repo}
89
</A>
···
115
<A
116
end
117
href={`/at://${props.params.repo}/labels`}
118
-
inactiveClass="text-blue-400 grow hover:underline active:underline"
119
>
120
labels
121
</A>
···
130
<A
131
end
132
href={`/at://${props.params.repo}/${props.params.collection}`}
133
-
inactiveClass="text-blue-400 w-full hover:underline active:underline"
134
>
135
{props.params.collection}
136
</A>
···
37
</Tooltip>
38
<Show when={pds()}>
39
<Show when={props.params.repo}>
40
+
<A end href={pds()!} inactiveClass="w-full hover:underline active:underline">
0
0
0
0
41
{pds()}
42
</A>
43
</Show>
···
79
<A
80
end
81
href={`/at://${props.params.repo}`}
82
+
inactiveClass="hover:underline active:underline w-full"
83
>
84
{showHandle() ? handle() : props.params.repo}
85
</A>
···
111
<A
112
end
113
href={`/at://${props.params.repo}/labels`}
114
+
inactiveClass="grow hover:underline active:underline"
115
>
116
labels
117
</A>
···
126
<A
127
end
128
href={`/at://${props.params.repo}/${props.params.collection}`}
129
+
inactiveClass="w-full hover:underline active:underline"
130
>
131
{props.params.collection}
132
</A>