From a4c58aab13db901197ec20ef2bc8b79578141b92 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Wed, 1 Mar 2017 20:36:37 +0100 Subject: [PATCH] Unify notice timelines to make changes easier. --- .../friends_timeline/friends_timeline.vue | 7 +--- src/components/mentions/mentions.vue | 7 +--- .../public_and_external_timeline.vue | 7 +--- .../public_timeline/public_timeline.vue | 7 +--- src/components/timeline/timeline.js | 3 +- src/components/timeline/timeline.vue | 35 +++++++++++-------- 6 files changed, 26 insertions(+), 40 deletions(-) diff --git a/src/components/friends_timeline/friends_timeline.vue b/src/components/friends_timeline/friends_timeline.vue index afe5cc896..3bf3b5432 100644 --- a/src/components/friends_timeline/friends_timeline.vue +++ b/src/components/friends_timeline/friends_timeline.vue @@ -1,10 +1,5 @@ diff --git a/src/components/mentions/mentions.vue b/src/components/mentions/mentions.vue index 59f002412..7af402ced 100644 --- a/src/components/mentions/mentions.vue +++ b/src/components/mentions/mentions.vue @@ -1,10 +1,5 @@ diff --git a/src/components/public_and_external_timeline/public_and_external_timeline.vue b/src/components/public_and_external_timeline/public_and_external_timeline.vue index bda511531..fd6969385 100644 --- a/src/components/public_and_external_timeline/public_and_external_timeline.vue +++ b/src/components/public_and_external_timeline/public_and_external_timeline.vue @@ -1,10 +1,5 @@ diff --git a/src/components/public_timeline/public_timeline.vue b/src/components/public_timeline/public_timeline.vue index d05695b27..bd6a23ed7 100644 --- a/src/components/public_timeline/public_timeline.vue +++ b/src/components/public_timeline/public_timeline.vue @@ -1,10 +1,5 @@ diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js index addd0255c..b4e80fe1e 100644 --- a/src/components/timeline/timeline.js +++ b/src/components/timeline/timeline.js @@ -5,7 +5,8 @@ import StatusOrConversation from '../status_or_conversation/status_or_conversati const Timeline = { props: [ 'timeline', - 'timelineName' + 'timelineName', + 'title' ], components: { Status, diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index 45886f6cf..15ac5ff83 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -1,20 +1,25 @@