atmosphere explorer pdsls.dev
atproto tool typescript

Compare changes

Choose any two refs to compare.

Changed files
+5 -5
src
+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" />
+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>