handy online tools for AT Protocol boat.kelinci.net
atproto bluesky atcute typescript solidjs
20
fork

Configure Feed

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

feat: focus on mount if no text

Mary 9490e181 38611b0f

+10
+5
src/views/identity/did-lookup.tsx
··· 56 56 <label class="flex flex-col gap-2"> 57 57 <span class="font-semibold text-gray-600">Handle or DID identifier*</span> 58 58 <input 59 + ref={(node) => { 60 + if (!params.q) { 61 + setTimeout(() => node.focus(), 1); 62 + } 63 + }} 59 64 type="text" 60 65 name="ident" 61 66 required
+5
src/views/identity/plc-oplogs.tsx
··· 65 65 <label class="flex flex-col gap-2"> 66 66 <span class="font-semibold text-gray-600">Handle or DID identifier*</span> 67 67 <input 68 + ref={(node) => { 69 + if (!params.q) { 70 + setTimeout(() => node.focus(), 1); 71 + } 72 + }} 68 73 type="text" 69 74 name="ident" 70 75 required