diff options
| author | eal <eal@waifu.club> | 2018-02-02 12:27:31 +0200 |
|---|---|---|
| committer | eal <eal@waifu.club> | 2018-02-02 12:27:31 +0200 |
| commit | f3f0155d60eeb191fa22208bc9e5aeeda67bf24a (patch) | |
| tree | 56aea5ccf9e4f6b6d8150f8559ce8dc8d4d914b8 | |
| parent | 8010c42768b3436df93c489ab971b2574c7a8f6b (diff) | |
Fix fav/RT buttons in notifications.
| -rw-r--r-- | src/components/status/status.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 3a8d164d..fed2fb78 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -8,8 +8,8 @@ <i class="base09 icon-reply" :class="{'icon-reply-active': replying}"></i> </a> </div> - <retweet-button :status=status></retweet-button> - <favorite-button :status=status></favorite-button> + <retweet-button :loggedIn="loggedIn" :status=status></retweet-button> + <favorite-button :loggedIn="loggedin" :status=status></favorite-button> </div> </div> <post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying" v-if="replying"/> |
