Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/argilla-io/argilla into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
leire committed May 8, 2024
2 parents e674e32 + 676533f commit 7dae34b
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 7dae34b

Please sign in to comment.