summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/diff-changes.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/ui/src/components/diff-changes.tsx')
-rw-r--r--packages/ui/src/components/diff-changes.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/ui/src/components/diff-changes.tsx b/packages/ui/src/components/diff-changes.tsx
index a8ab737f7..9e29dbb2b 100644
--- a/packages/ui/src/components/diff-changes.tsx
+++ b/packages/ui/src/components/diff-changes.tsx
@@ -105,8 +105,8 @@ export function DiffChanges(props: {
</svg>
</Match>
<Match when={variant() === "default"}>
- <span data-slot="additions">{`+${additions()}`}</span>
- <span data-slot="deletions">{`-${deletions()}`}</span>
+ <span data-slot="diff-changes-additions">{`+${additions()}`}</span>
+ <span data-slot="diff-changes-deletions">{`-${deletions()}`}</span>
</Match>
</Switch>
</div>