{#if citations.length > 0}
{#if citations.length <= 3}
{#each citations as citation, idx}
{ showCitationModal = true; selectedCitation = citation; }} > {#if citations.every((c) => c.distances !== undefined)}
{idx + 1}
{/if}
{citation.source.name}
{/each}
{:else}
{$i18n.t('References from')}
{#each citations.slice(0, 2) as citation, idx}
{ showCitationModal = true; selectedCitation = citation; }} on:pointerup={(e) => { e.stopPropagation(); }} > {#if citations.every((c) => c.distances !== undefined)}
{idx + 1}
{/if}
{citation.source.name}
{/each}
{$i18n.t('and')}
{citations.length - 2}
{$i18n.t('more')}
{#if isCollapsibleOpen}
{:else}
{/if}
{#each citations as citation, idx}
{ showCitationModal = true; selectedCitation = citation; }} > {#if citations.every((c) => c.distances !== undefined)}
{idx + 1}
{/if}
{citation.source.name}
{/each}
{/if}
{/if}