{#if showSearchableSelect}
({ label: repo.name, value: repo.url }))} placeholder="Select repository..." clearable disabled={disabled} bind:filterText={filterText} bind:value={selectedRepository} /> {#if hasMoreRepos}
Loaded {loadedRepositories.length} of {totalCount}
{#if hasMoreRepos}
{isLoadingMore ? 'loading...' : 'load more...'}
{/if}
{/if}
{:else}
Select repository
{#each initialRepositories as repository (repository.url)}
{repository.name}
{/each}
{/if}