fix: add back channel display in timeline

This commit is contained in:
freeplay 2023-07-04 13:47:31 -04:00
parent 7a160d3c8f
commit f540438740

View File

@ -128,8 +128,8 @@
</div> </div>
</div> </div>
</div> </div>
<div v-if="detailedView" class="info"> <div v-if="detailedView || (appearNote.channel && !inChannel)" class="info">
<MkA class="created-at" :to="notePage(appearNote)"> <MkA v-if="detailedView" class="created-at" :to="notePage(appearNote)">
<MkTime :time="appearNote.createdAt" mode="absolute" /> <MkTime :time="appearNote.createdAt" mode="absolute" />
</MkA> </MkA>
<MkA <MkA
@ -137,7 +137,7 @@
class="channel" class="channel"
:to="`/channels/${appearNote.channel.id}`" :to="`/channels/${appearNote.channel.id}`"
@click.stop @click.stop
><i class="ph-television ph-bold ph-lg"></i> ><i class="ph-television ph-bold"></i>
{{ appearNote.channel.name }}</MkA {{ appearNote.channel.name }}</MkA
> >
</div> </div>