aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.js
diff options
context:
space:
mode:
authorfeld <feld@feld.me>2019-12-13 17:02:09 +0000
committerfeld <feld@feld.me>2019-12-13 17:02:09 +0000
commit749a3999449fa5d5cf366a3b636be4590d93729c (patch)
treeb38aa6b0c60e9ba96f00dd4ac433f5d976612429 /src/components/timeline/timeline.js
parent0b49e798e0737728e94ff8a284a4570acc7bac28 (diff)
parent8ee80339555c53d45602f40fdbe6b487a6992515 (diff)
Merge branch 'issue_124' into 'develop'
Change 403 messaging See merge request pleroma/pleroma-fe!1020
Diffstat (limited to 'src/components/timeline/timeline.js')
-rw-r--r--src/components/timeline/timeline.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index 27a9a55e..9a53acd6 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -36,7 +36,12 @@ const Timeline = {
}
},
computed: {
- timelineError () { return this.$store.state.statuses.error },
+ timelineError () {
+ return this.$store.state.statuses.error
+ },
+ errorData () {
+ return this.$store.state.statuses.errorData
+ },
newStatusCount () {
return this.timeline.newStatusCount
},