diff options
| author | Roger Braun <roger@rogerbraun.net> | 2016-11-24 18:31:18 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2016-11-24 18:31:18 +0100 |
| commit | 4f0155c5eb532fea6cde2aea870824f936923132 (patch) | |
| tree | 7a190b4173dc640397d7e49819e297adf12e9cf5 /src | |
| parent | ce0071d6e085ada533810d73200607381b9a5807 (diff) | |
Timeline status adding fixes.
Don't show new statuses immediately if we already have something in there.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/timeline/timeline.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js index 4ebc383f..8799e69c 100644 --- a/src/components/timeline/timeline.js +++ b/src/components/timeline/timeline.js @@ -12,12 +12,13 @@ const Timeline = { created () { const store = this.$store const credentials = store.state.users.currentUser.credentials + const showImmediately = this.timeline.visibleStatuses.length === 0 timelineFetcher.fetchAndUpdate({ store, credentials, timeline: this.timelineName, - showImmediately: true + showImmediately }) }, methods: { |
