forked from AkkomaGang/akkoma-fe
Use statusOrConversation component in timeline.
This commit is contained in:
parent
800b051a16
commit
b420b5838c
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
import Status from '../status/status.vue'
|
import Status from '../status/status.vue'
|
||||||
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
|
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
|
||||||
|
import StatusOrConversation from '../status_or_conversation/status_or_conversation.vue'
|
||||||
|
|
||||||
const Timeline = {
|
const Timeline = {
|
||||||
props: [
|
props: [
|
||||||
|
@ -7,7 +8,8 @@ const Timeline = {
|
||||||
'timelineName'
|
'timelineName'
|
||||||
],
|
],
|
||||||
components: {
|
components: {
|
||||||
Status
|
Status,
|
||||||
|
StatusOrConversation
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
const store = this.$store
|
const store = this.$store
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<status v-for="status in timeline.visibleStatuses" :key="status.id" v-bind:statusoid="status"></status>
|
<status-or-conversation v-for="status in timeline.visibleStatuses" :key="status.id" v-bind:statusoid="status"></status-or-conversation>
|
||||||
<a href="#" v-on:click.prevent='fetchOlderStatuses()' v-if="!timeline.loading">
|
<a href="#" v-on:click.prevent='fetchOlderStatuses()' v-if="!timeline.loading">
|
||||||
<div class="base01-background base05-border new-status-notification">
|
<div class="base01-background base05-border new-status-notification">
|
||||||
<p class="text-center" >
|
<p class="text-center" >
|
||||||
|
|
Loading…
Reference in a new issue