mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2025-01-07 02:11:11 +03:00
rename Trunk to Target in the UI
As it is more descriptive what it is. Added a tooltip for a good measure
This commit is contained in:
parent
2bd00f9b4c
commit
9263813a50
@ -21,7 +21,7 @@
|
||||
</script>
|
||||
|
||||
<button
|
||||
use:tooltip={isNavCollapsed ? 'Trunk' : ''}
|
||||
use:tooltip={isNavCollapsed ? 'Target' : ''}
|
||||
on:mousedown={async () => await goto(`/${project.id}/base`)}
|
||||
class="base-branch-card"
|
||||
class:selected
|
||||
@ -39,7 +39,10 @@
|
||||
{#if !isNavCollapsed}
|
||||
<div class="content">
|
||||
<div class="button-head">
|
||||
<span class="text-base-14 text-semibold trunk-label">Trunk</span>
|
||||
<span
|
||||
use:tooltip={'The branch that your Workspace virtual branches are based on and will be merged into.'}
|
||||
class="text-base-14 text-semibold trunk-label">Target</span
|
||||
>
|
||||
{#if ($base?.behind || 0) > 0}
|
||||
<Badge count={$base?.behind || 0} help="Unmerged upstream commits" />
|
||||
{/if}
|
||||
|
Loading…
Reference in New Issue
Block a user