History

Commits

{#if localBranchNames.length > 0} {/if} {visibleCommits.length}
{#if !hasRepository}
No repository loaded.
{:else if commits.length === 0}
No commits returned.
{:else if visibleCommits.length === 0}
No commits match the selected branches.
{:else}
{#each visibleCommitEntries as entry, rowIndex (entry.commit.hash)} {@const item = entry.commit} {@const row = graphRows[rowIndex]} {@const hoverBranchRefs = commitHoverBranchLabels(item, row)} {@const otherRefs = visibleRefs(item)}
1} class:root-row={item.parents.length === 0} class:tip-row={item.refs.length > 0} >
{authorInitials(item.author_name)}
{item.summary} {#if item.parents.length > 1}
{item.short_hash} {item.author_name}
{#if otherRefs.length > 0}
{#each otherRefs as ref} {refLabel(ref)} {/each}
{/if} {#if item.files.length > 0}
{#if expandedCommitHashes.has(item.hash)}
{#each item.files as file (`${item.hash}:${file.old_path ?? ""}:${file.path}`)} {/each}
{/if}
{/if}
{/each}
{/if} {#if contextCommit} {/if}
{#if branchDialogOpen} {/if}