forked from AkkomaGang/akkoma-fe
display repeat visibility
This commit is contained in:
parent
ccac52d046
commit
8a8fc11219
2 changed files with 16 additions and 0 deletions
|
@ -215,6 +215,7 @@ const Status = {
|
|||
retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name_ui },
|
||||
retweeterHtml () { return this.statusoid.user.name },
|
||||
retweeterProfileLink () { return this.generateUserProfileLink(this.statusoid.user.id, this.statusoid.user.screen_name) },
|
||||
retweeterVisibility () { return this.statusoid.visibility },
|
||||
status () {
|
||||
if (this.retweet) {
|
||||
return this.statusoid.retweeted_status
|
||||
|
@ -440,6 +441,9 @@ const Status = {
|
|||
visibilityLocalized () {
|
||||
return this.$i18n.t('general.scope_in_timeline.' + this.status.visibility)
|
||||
},
|
||||
retweeterVisibilityLocalized () {
|
||||
return this.$i18n.t('general.scope_in_timeline.' + this.statusoid.visibility)
|
||||
},
|
||||
isEdited () {
|
||||
return this.status.edited_at !== null
|
||||
},
|
||||
|
|
|
@ -113,6 +113,18 @@
|
|||
/>
|
||||
{{ $t('timeline.repeated') }}
|
||||
</div>
|
||||
|
||||
<span
|
||||
v-if="retweeterVisibility"
|
||||
class="visibility-icon"
|
||||
:title="retweeterVisibilityLocalized"
|
||||
>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
class="fa-scale-110"
|
||||
:icon="visibilityIcon(retweeterVisibility)"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue