Skip to content

Commit c1af6b0

Browse files
aklappersduenas
authored andcommitted
[ui] Correct arrow direction when merging recommendations
Currently shows `foo → bar` but direction is inverted as the resulting entity will be named `foo` instead of `bar`. Signed-off-by: Andre Klapper <[email protected]>
1 parent 5d1f0f7 commit c1af6b0

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Wrong arrong direction when merging recommendations
3+
category: fixed
4+
author: Andre Klapper
5+
issue: 934
6+
notes: >
7+
When recommendations were merged, the arrow showing the
8+
direction of the merge was wrong. It showed `foo → bar`
9+
but the resulting identity will be named `foo` instead
10+
of `bar`. The arrow now points in the other direction
11+
showing that `bar` will be merged on `foo`.

ui/src/components/Recommendations.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
/>
9898
</v-col>
9999
<v-col :cols="1" class="d-flex justify-center">
100-
<v-icon>mdi-arrow-right</v-icon>
100+
<v-icon>mdi-arrow-left</v-icon>
101101
</v-col>
102102
<v-col>
103103
<individual-card

0 commit comments

Comments
 (0)