csr tangled client in solid-js
15

Configure Feed

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

lowercasify

dawn (May 21, 2026, 5:12 AM +0300) e0a03f17 526e8e13

+4 -4
+4 -4
src/views/search.tsx
··· 487 487 488 488 return ( 489 489 <> 490 - <h1 class="text-2xl font-bold mb-4 px-2">Search</h1> 490 + <h1 class="text-2xl font-bold mb-4 px-2">search</h1> 491 491 492 492 <div class="untangled-search-grid px-2"> 493 493 <div class="untangled-search-main"> ··· 523 523 524 524 <Show 525 525 when={q().trim()} 526 - fallback={<div class="text-base text-gray-500 flex items-center justify-center italic p-12 border border-gray-200 dark:border-gray-700 rounded">Enter a query to search indexed records.</div>} 526 + fallback={<div class="text-base text-gray-500 flex items-center justify-center italic p-12 border border-gray-200 dark:border-gray-700 rounded">enter a query to search indexed records.</div>} 527 527 > 528 528 <Switch> 529 529 <Match when={searchQuery.isLoading}> 530 530 <div class="p-12 border border-gray-200 dark:border-gray-700 rounded"> 531 - <LoadingState label="Searching..." /> 531 + <LoadingState label="searching..." /> 532 532 </div> 533 533 </Match> 534 534 <Match when={searchQuery.error}> ··· 544 544 when={data().hits.length > 0} 545 545 fallback={ 546 546 <div class="text-base text-gray-500 flex items-center justify-center italic p-12 border border-gray-200 dark:border-gray-700 rounded"> 547 - <span>No results found.</span> 547 + <span>no results found.</span> 548 548 </div> 549 549 } 550 550 >