summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-10-02 13:40:09 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-10-02 13:40:09 -0100
commit1d960fa4f1b36152a714de1296f8af610b6a3218 (patch)
treef321edd2d8029eecd93b29cfc80306d8aaf8df47 /src
parentb2f836631c1f242096b4b07db8434557f7ce3f64 (diff)
eslint
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/TimelineList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TimelineList.vue b/src/components/TimelineList.vue
index f35115c9..f42edb4b 100644
--- a/src/components/TimelineList.vue
+++ b/src/components/TimelineList.vue
@@ -126,7 +126,7 @@ export default {
let content = this.emptyContent[this.$route.name]
// Change text on profile page when accessed by another user or a public (non-authenticated) user
if (this.$route.name === 'profile' && (this.serverData.public || this.$route.params.account !== this.currentUser.uid)) {
- content.title = this.$route.params.account + ' ' + t('social', 'hasn\'t tooted yet')
+ content.title = this.$route.params.account + ' ' + t('social', 'hasn\'t tooted yet')
}
return this.$route.name === 'timeline' ? this.emptyContent['default'] : content
}