summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-07-13 15:17:10 +0200
committerGitHub <noreply@github.com>2022-07-13 15:17:10 +0200
commit64c5fee2077228169203babb7a8113249b7d2eff (patch)
tree8e7b36f44816b7b9b977d6a3ca2e4105132f7d9a
parent8cdb99b846994191eb32ab0d5591e8e184cf2b04 (diff)
parent5fd9376255ae26c4d7412fd43b52d4622cd3f3ce (diff)
Merge pull request #1447 from nextcloud/fix/inverted-like-button
Fix inverted like button
-rw-r--r--src/components/TimelinePost.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/TimelinePost.vue b/src/components/TimelinePost.vue
index 8e72c65b..764e8c02 100644
--- a/src/components/TimelinePost.vue
+++ b/src/components/TimelinePost.vue
@@ -44,7 +44,7 @@
v-tooltip="t('social', 'Boost')"
@click="boost">
<template #icon>
- <Repeat :size="20" :fillColor="isBoosted ? 'blue' : 'black'" />
+ <Repeat :size="20" :fill-color="isBoosted ? 'blue' : 'black'" />
</template>
</Button>
<Button v-if="!isLiked"
@@ -52,7 +52,7 @@
v-tooltip="t('social', 'Like')"
@click="like">
<template #icon>
- <Heart :size="20" />
+ <HeartOutline :size="20" />
</template>
</Button>
<Button v-if="isLiked"
@@ -60,7 +60,7 @@
v-tooltip="t('social', 'Undo Like')"
@click="like">
<template #icon>
- <HeartOutline :size="20" />
+ <Heart :size="20" :fill-color="'var(--color-error)'" />
</template>
</Button>
<Actions>