Applied
{#each applicationStore.applyed.filter((i) => { if (!filter) { return true; } const f = new RegExp(filter, 'ig'); let x = i.title; if (i.company) { x = `${x} @ ${i.company}`; } return x.match(f); }) as item}
{ item.views = await get(`view/${item.id}`); item.events = await get(`events/${item.id}`); applicationStore.loadItem = item; window.scrollTo({ top: 0, behavior: 'smooth' }); }} >
{item.title} {#if item.company}
@ {item.company}
{/if}
{item.url}
{/each}