From da2558b20f53aade0049f40688d88fc1c4fdfc4e Mon Sep 17 00:00:00 2001 From: Juliet Date: Wed, 4 Feb 2026 16:58:18 +0100 Subject: [PATCH] inline load more in blob and pds page --- src/views/blob.tsx | 6 ++---- src/views/pds.tsx | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/views/blob.tsx b/src/views/blob.tsx index f2a16c2..8a8c4f1 100644 --- a/src/views/blob.tsx +++ b/src/views/blob.tsx @@ -4,7 +4,7 @@ import { Button } from "../components/button"; const LIMIT = 1000; -const BlobView = (props: { pds: string; repo: string }) => { +export const BlobView = (props: { pds: string; repo: string }) => { const [cursor, setCursor] = createSignal(); let rpc: Client; @@ -46,7 +46,7 @@ const BlobView = (props: { pds: string; repo: string }) => {
-
+

{blobs()?.length} blob{(blobs()?.length ?? 0 > 1) ? "s" : ""}

@@ -69,5 +69,3 @@ const BlobView = (props: { pds: string; repo: string }) => {
); }; - -export { BlobView }; diff --git a/src/views/pds.tsx b/src/views/pds.tsx index 10ce5a2..ef5baee 100644 --- a/src/views/pds.tsx +++ b/src/views/pds.tsx @@ -206,7 +206,7 @@ export const PdsView = () => {
-
+

{repos()?.length} loaded