aboutsummaryrefslogtreecommitdiff
path: root/src/components/retweet_button/retweet_button.vue
diff options
context:
space:
mode:
authorHenry <spam@hjkos.com>2018-12-03 19:22:39 +0000
committerHenry <spam@hjkos.com>2018-12-03 19:22:39 +0000
commit480f617c098c831e095a686abb319f4e467e15e4 (patch)
tree578c75a1c553258b445f996777c352f5f17b377d /src/components/retweet_button/retweet_button.vue
parentb851b8dd02e66399cf6ac4f5f1b1cae8e28e3c55 (diff)
parentc142f7b7b64ae1b4cc60340e2bbe43fe774bcd3b (diff)
Merge branch 'dev_vald_fe/be' into 'develop'
added tooltip See merge request pleroma/pleroma-fe!391
Diffstat (limited to 'src/components/retweet_button/retweet_button.vue')
-rw-r--r--src/components/retweet_button/retweet_button.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/retweet_button/retweet_button.vue b/src/components/retweet_button/retweet_button.vue
index c9ed12eb..c957fb77 100644
--- a/src/components/retweet_button/retweet_button.vue
+++ b/src/components/retweet_button/retweet_button.vue
@@ -1,7 +1,7 @@
<template>
<div v-if="loggedIn">
<template v-if="visibility !== 'private' && visibility !== 'direct'">
- <i :class='classes' class='retweet-button icon-retweet rt-active' v-on:click.prevent='retweet()'></i>
+ <i :class='classes' class='retweet-button icon-retweet rt-active' v-on:click.prevent='retweet()' :title="$t('tool_tip.repeat')"></i>
<span v-if='!hidePostStatsLocal && status.repeat_num > 0'>{{status.repeat_num}}</span>
</template>
<template v-else>
@@ -9,7 +9,7 @@
</template>
</div>
<div v-else-if="!loggedIn">
- <i :class='classes' class='icon-retweet'></i>
+ <i :class='classes' class='icon-retweet' :title="$t('tool_tip.repeat')"></i>
<span v-if='!hidePostStatsLocal && status.repeat_num > 0'>{{status.repeat_num}}</span>
</div>
</template>