summaryrefslogtreecommitdiff
path: root/src/web/app/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/desktop')
-rw-r--r--src/web/app/desktop/views/components/posts-post.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/desktop/views/components/posts-post.vue b/src/web/app/desktop/views/components/posts-post.vue
index 9991d145e4..cc2d7534a8 100644
--- a/src/web/app/desktop/views/components/posts-post.vue
+++ b/src/web/app/desktop/views/components/posts-post.vue
@@ -24,7 +24,7 @@
<div class="info">
<span class="app" v-if="p.app">via <b>{{ p.app.name }}</b></span>
<a class="created-at" :href="url">
- <mk-time time="p.created_at"/>
+ <mk-time :time="p.created_at"/>
</a>
</div>
</header>
@@ -188,7 +188,7 @@ export default Vue.extend({
react() {
document.body.appendChild(new MkReactionPicker({
propsData: {
- source: this.$refs.menuButton,
+ source: this.$refs.reactButton,
post: this.p
}
}).$mount().$el);