this repo has no description
0
fork

Configure Feed

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

restyle filter input

Juliet d7296d03 e54d1a07

+4 -3
+4 -3
src/views/collection.tsx
··· 17 17 import { Button, type ButtonProps } from "../components/button.jsx"; 18 18 import { JSONType, JSONValue } from "../components/json.jsx"; 19 19 import { agent } from "../components/login.jsx"; 20 - import { TextInput } from "../components/text-input.jsx"; 21 20 import Tooltip from "../components/tooltip.jsx"; 22 21 import { setNotif } from "../layout.jsx"; 23 22 import { resolvePDS } from "../utils/api.js"; ··· 272 271 <span class="iconify lucide--radio-tower text-lg"></span> 273 272 </A> 274 273 </Tooltip> 275 - <TextInput 274 + <input 275 + type="text" 276 + spellcheck={false} 276 277 placeholder="Filter by substring" 277 - class="w-full" 278 + class="dark:bg-dark-100 grow rounded-lg border-[0.5px] border-neutral-300 bg-white px-2 py-1 shadow-sm placeholder:text-sm focus:outline-[1.5px] focus:outline-neutral-900 dark:border-neutral-700 dark:focus:outline-neutral-200" 278 279 onInput={(e) => setFilter(e.currentTarget.value)} 279 280 /> 280 281 </div>