summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJonas Sulzer <jonas@violoncello.ch>2019-04-23 20:42:38 +0200
committerMaxence Lange <maxence@artificial-owl.com>2019-05-03 16:31:15 -0100
commitcb408e8fb342d52604c336607dc9727b1b6f4de3 (patch)
tree1719549c804ed67dad2a711d6655841cd280c6dd /src
parent8d533988b87c5ac9a6ad610ccdfc132eec3edeea (diff)
🐛 FIX: copy past error
Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
Diffstat (limited to 'src')
-rw-r--r--src/components/TimelineEntry.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TimelineEntry.vue b/src/components/TimelineEntry.vue
index 1f15845c..5f9f7f4a 100644
--- a/src/components/TimelineEntry.vue
+++ b/src/components/TimelineEntry.vue
@@ -119,7 +119,7 @@ export default {
if (typeof this.item.action === 'undefined') {
return false;
} else {
- if (typeof this.item.action.values.boosted === false) {
+ if (this.item.action.values.boosted === false) {
return false;
} else {
return true;