Skip to content

Commit 00abb24

Browse files
authored
Merge pull request #9825 from gitbutlerapp/kv-branch-52
fix: change rule pill text from "All files matched" to "All changes"
2 parents d63e0a1 + 41416b9 commit 00abb24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/desktop/src/components/Rule.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
return {
5050
icon: 'text-width' as keyof typeof iconsJson,
5151
label: filter.subject,
52-
tooltip: `Changes with text: ${filter.subject}`
52+
tooltip: `Containing text: ${filter.subject}`
5353
};
5454
case 'fileChangeType':
5555
return {
@@ -157,7 +157,7 @@
157157
{/snippet}
158158

159159
{#snippet assignChip()}
160-
<Tooltip text="Assigns to">
160+
<Tooltip text="Assign to branch">
161161
<div class="rule__action-chip">
162162
<Icon name="arrow-right" />
163163
</div>
@@ -189,7 +189,7 @@
189189
{@render filterPill(filter)}
190190
{:else}
191191
<div class="rule__pill">
192-
<span class="text-12 truncate">*. All files matched</span>
192+
<span class="text-12 truncate">*. All changes</span>
193193
</div>
194194
{/each}
195195
{@render assignChip()}

0 commit comments

Comments
 (0)