this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

animate chevron

+11 -13
+11 -13
src/views/repo.tsx
··· 111 } 112 113 return ( 114 - <div class="grid grid-cols-[min-content_1fr] items-center"> 115 - <div class={icon + ` mr-1 shrink-0 text-lg`} /> 116 <p 117 classList={{ 118 "font-semibold": true, ··· 254 onInput={(e) => setFilter(e.currentTarget.value)} 255 /> 256 <div class="flex flex-col font-mono"> 257 - <div class="grid grid-cols-[min-content_1fr] items-center gap-x-1 overflow-hidden text-sm"> 258 <For 259 each={Object.keys(nsids() ?? {}).filter((authority) => 260 filter() ? ··· 264 > 265 {(authority) => ( 266 <> 267 - <Show when={nsids()?.[authority].hidden}> 268 - <button onclick={() => toggleCollection(authority)}> 269 - <div class="i-lucide-chevron-right mr-1 text-lg" /> 270 - </button> 271 - </Show> 272 - <Show when={!nsids()?.[authority].hidden}> 273 - <button onclick={() => toggleCollection(authority)}> 274 - <div class="i-lucide-chevron-down mr-1 text-lg" /> 275 - </button> 276 - </Show> 277 <button 278 class="break-anywhere bg-transparent text-left" 279 onclick={() => toggleCollection(authority)}
··· 111 } 112 113 return ( 114 + <div class="grid grid-cols-[min-content_1fr] items-center gap-x-1"> 115 + <div class={icon + ` shrink-0 text-lg`} /> 116 <p 117 classList={{ 118 "font-semibold": true, ··· 254 onInput={(e) => setFilter(e.currentTarget.value)} 255 /> 256 <div class="flex flex-col font-mono"> 257 + <div class="grid grid-cols-[min-content_1fr] items-center gap-x-2 overflow-hidden text-sm"> 258 <For 259 each={Object.keys(nsids() ?? {}).filter((authority) => 260 filter() ? ··· 264 > 265 {(authority) => ( 266 <> 267 + <button onclick={() => toggleCollection(authority)}> 268 + <div 269 + classList={{ 270 + "i-lucide-chevron-down text-lg transition-transform": true, 271 + "-rotate-90": nsids()?.[authority].hidden, 272 + }} 273 + /> 274 + </button> 275 <button 276 class="break-anywhere bg-transparent text-left" 277 onclick={() => toggleCollection(authority)}