Skip to content

Commit

Permalink
馃悰 Ranking component not showing rankings (#4775)
Browse files Browse the repository at this point in the history
Co-authored-by: leire <leire@recogn.ai>
  • Loading branch information
damianpumar and leiyre committed May 6, 2024
1 parent dacb013 commit 676533f
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
@focus="onFocus"
>
<BaseTooltip
v-if="isSuggested(item)"
class="draggable__rank-card--unranked"
:title="$t('suggestion.name')"
:title="isSuggested(item) ? $t('suggestion.name') : null"
:text="getSuggestedAgent(item)"
minimalist
>
Expand Down Expand Up @@ -69,8 +68,7 @@
@focus="onFocus"
>
<BaseTooltip
v-if="isSuggested(item)"
:title="$t('suggestion.name')"
:title="isSuggested(item) ? $t('suggestion.name') : null"
:text="getSuggestedAgent(item)"
minimalist
class="draggable__rank-card--ranked"
Expand Down

0 comments on commit 676533f

Please sign in to comment.