atmosphere explorer
0
fork

Configure Feed

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

change labels page labels

Juliet 4c58788c c11ff4ed

+12 -16
+1 -1
src/components/backlinks.tsx
··· 74 74 onClick={() => setMore(true)} 75 75 class="dark:hover:bg-dark-200 dark:shadow-dark-700 dark:active:bg-dark-100 box-border flex h-7 w-full items-center justify-center gap-1 rounded border-[0.5px] border-neutral-300 bg-neutral-50 px-2 py-1.5 text-xs shadow-xs select-none hover:bg-neutral-100 active:bg-neutral-200 dark:border-neutral-700 dark:bg-neutral-800" 76 76 > 77 - Load More 77 + Load more 78 78 </Button> 79 79 </div> 80 80 }
+1 -1
src/views/blob.tsx
··· 51 51 {blobs()?.length} blob{(blobs()?.length ?? 0 > 1) ? "s" : ""} 52 52 </p> 53 53 <Show when={!response.loading && cursor()}> 54 - <Button onClick={() => refetch()}>Load More</Button> 54 + <Button onClick={() => refetch()}>Load more</Button> 55 55 </Show> 56 56 <Show when={response.loading}> 57 57 <span class="iconify lucide--loader-circle animate-spin py-3.5 text-xl"></span>
+1 -1
src/views/car/explore.tsx
··· 439 439 {displayedEntries().length}/{filteredEntries().length} 440 440 </span> 441 441 442 - <Button onClick={loadMore}>Load More</Button> 442 + <Button onClick={loadMore}>Load more</Button> 443 443 </Show> 444 444 </div> 445 445
+1 -1
src/views/collection.tsx
··· 398 398 <div class="flex w-20 items-center justify-end"> 399 399 <Show when={cursor()}> 400 400 <Show when={!response.loading}> 401 - <Button onClick={() => refetch()}>Load More</Button> 401 + <Button onClick={() => refetch()}>Load more</Button> 402 402 </Show> 403 403 <Show when={response.loading}> 404 404 <div class="iconify lucide--loader-circle w-20 animate-spin text-xl" />
+7 -11
src/views/labels.tsx
··· 200 200 <div class="flex w-full flex-col items-center"> 201 201 <form 202 202 ref={formRef} 203 - class="flex w-full max-w-3xl flex-col gap-y-2 px-3 pb-2" 203 + class="flex w-full max-w-3xl flex-col gap-y-3 px-3 pb-2" 204 204 onSubmit={(e) => { 205 205 e.preventDefault(); 206 206 handleSearch(); 207 207 }} 208 208 > 209 - <div class="flex flex-col gap-y-1.5"> 209 + <div class="flex flex-col gap-y-3"> 210 210 <label class="flex w-full flex-col gap-y-1"> 211 211 <span class="text-sm font-medium text-neutral-700 dark:text-neutral-300"> 212 - Labeler DID/Handle 212 + Labeler handle or DID 213 213 </span> 214 214 <TextInput 215 215 name="did" ··· 222 222 223 223 <label class="flex w-full flex-col gap-y-1"> 224 224 <span class="text-sm font-medium text-neutral-700 dark:text-neutral-300"> 225 - URI Patterns (comma-separated) 225 + URI patterns (comma-separated) 226 226 </span> 227 227 <textarea 228 228 id="uriPatterns" ··· 236 236 </label> 237 237 </div> 238 238 239 - <Button 240 - type="submit" 241 - disabled={loading()} 242 - class="dark:hover:bg-dark-200 dark:shadow-dark-700 dark:active:bg-dark-100 box-border flex h-7 w-fit items-center justify-center gap-1 rounded-lg border-[0.5px] border-neutral-300 bg-neutral-50 px-2 py-1.5 text-xs shadow-xs select-none hover:bg-neutral-100 active:bg-neutral-200 dark:border-neutral-700 dark:bg-neutral-800" 243 - > 239 + <Button type="submit" disabled={loading()} classList={{ "w-fit": true }}> 244 240 <span class="iconify lucide--search" /> 245 - <span>Search Labels</span> 241 + <span>Search labels</span> 246 242 </Button> 247 243 248 244 <Show when={error()}> ··· 279 275 when={!loading()} 280 276 fallback={<span class="iconify lucide--loader-circle animate-spin" />} 281 277 > 282 - Load More 278 + Load more 283 279 </Show> 284 280 </Button> 285 281 </Show>
+1 -1
src/views/pds.tsx
··· 260 260 <div class="flex flex-col items-center gap-1 pb-2"> 261 261 <p>{repos()?.length} loaded</p> 262 262 <Show when={!response.loading && cursor()}> 263 - <Button onClick={() => refetch()}>Load More</Button> 263 + <Button onClick={() => refetch()}>Load more</Button> 264 264 </Show> 265 265 <Show when={response.loading}> 266 266 <span class="iconify lucide--loader-circle animate-spin py-3.5 text-xl"></span>