atmosphere explorer
0
fork

Configure Feed

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

collection filter partial search

Juliet fc85b7cc a7a05ba9

+5 -4
+5 -4
src/views/repo.tsx
··· 391 391 <For 392 392 each={Object.keys(nsids() ?? {}).filter((authority) => 393 393 filter() ? 394 - authority.startsWith(filter()!) || filter()?.startsWith(authority) 394 + authority.includes(filter()!) || 395 + nsids()?.[authority].nsids.some((nsid) => 396 + `${authority}.${nsid}`.includes(filter()!), 397 + ) 395 398 : true, 396 399 )} 397 400 > ··· 421 424 <div class="flex flex-1 flex-col"> 422 425 <For 423 426 each={nsids()?.[authority].nsids.filter((nsid) => 424 - filter() ? 425 - nsid.startsWith(filter()!.split(".").slice(2).join(".")) 426 - : true, 427 + filter() ? `${authority}.${nsid}`.includes(filter()!) : true, 427 428 )} 428 429 > 429 430 {(nsid) => (