mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-01 20:45:57 +03:00
pnpm format
This commit is contained in:
parent
f9a6b204b4
commit
468e41fa90
@ -573,7 +573,11 @@
|
||||
class:dark:bg-dark-500={commit.isRemote}
|
||||
/>
|
||||
</div>
|
||||
<CommitCard {commit} url={base?.commitUrl(commit.id)} isIntegrated={commit.isIntegrated} />
|
||||
<CommitCard
|
||||
{commit}
|
||||
url={base?.commitUrl(commit.id)}
|
||||
isIntegrated={commit.isIntegrated}
|
||||
/>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
|
@ -5,7 +5,7 @@
|
||||
import Tooltip from '$lib/components/Tooltip/Tooltip.svelte';
|
||||
|
||||
export let commit: Commit;
|
||||
export let isIntegrated = false;
|
||||
export let isIntegrated = false;
|
||||
export let url: string | undefined = undefined;
|
||||
</script>
|
||||
|
||||
|
@ -98,7 +98,11 @@
|
||||
<p class="mb-2 w-full overflow-hidden font-semibold">Commits</p>
|
||||
<div class="flex w-full flex-col gap-y-2">
|
||||
{#each branch.commits as commit}
|
||||
<CommitCard {commit} url={base?.commitUrl(commit.id)} isIntegrated={commit.isIntegrated} />
|
||||
<CommitCard
|
||||
{commit}
|
||||
url={base?.commitUrl(commit.id)}
|
||||
isIntegrated={commit.isIntegrated}
|
||||
/>
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user