{#if selection}
{selection.last5} {selection.name}
selection = null}>❌
{#each Object.entries(selection) as entry}{#if entry[0].charAt(0) != '_'}
{entry[0]}
{typeof entry[1] == 'string' ? entry[1] : JSON.stringify(entry[1])}
{/if}{/each}
{/if}
RCRS
{#if query}
query = ''}>❌
{/if}
{#if pattern} {#each all_reports as row} {#if filter_test(pattern, row._content)}
selection = selection !== row ? row : null}>
{row.last5} {row.name} {row.tumors.map(x => x.meta.primarySite).join(' ')}
{/if} {/each} {:else} {#each all_reports as row}
selection = selection !== row ? row : null}>
{row.last5} {row.name} {row.tumors.map(x => x.meta.primarySite).join(' ')}
{/each} {/if}
{#if loadmore.loading}
Loading...
{:else}
Load more
{/if}