diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-06-12 16:20:02 +0200 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-06-12 16:20:02 +0200 |
| commit | 2e7029b67027dae7ee3202553c0c9e288c882730 (patch) | |
| tree | 967f435c1a63e26f5eebe346747c449f80db6c77 /src/components/user_profile/user_profile.vue | |
| parent | 090148ef6051ec2399fe47281db9f73955297d97 (diff) | |
Display user timeline
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index fe693c9d..0765b01c 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -1,6 +1,9 @@ <template> - <div v-if="user" class="user-profile panel panel-default base00-background"> - <user-card-content :user="user"></user-card-content> + <div> + <div v-if="user" class="user-profile panel panel-default base00-background"> + <user-card-content :user="user"></user-card-content> + </div> + <Timeline :title="'User Timeline'" v-bind:timeline="timeline" v-bind:timeline-name="'user'"/> </div> </template> |
