forked from AkkomaGang/akkoma-fe
Revert "eliminate expandable prop in favor of inConversation"
This reverts commit 1455e1f9d5
.
This commit is contained in:
parent
134b1894d6
commit
917e82e8ee
3 changed files with 3 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
|||
:key="status.id"
|
||||
:inlineExpanded="collapsable && isExpanded"
|
||||
:statusoid="status"
|
||||
:expandable='!isExpanded'
|
||||
:focused="focused(status.id)"
|
||||
:inConversation="isExpanded"
|
||||
:highlight="getHighlight()"
|
||||
|
|
|
@ -18,6 +18,7 @@ const Status = {
|
|||
name: 'Status',
|
||||
props: [
|
||||
'statusoid',
|
||||
'expandable',
|
||||
'inConversation',
|
||||
'focused',
|
||||
'highlight',
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<a :href="status.external_url" target="_blank" v-if="!status.is_local && !isPreview" class="source_url" title="Source">
|
||||
<i class="button-icon icon-link-ext-alt"></i>
|
||||
</a>
|
||||
<template v-if="!inConversation && !isPreview">
|
||||
<template v-if="expandable && !isPreview">
|
||||
<a href="#" @click.prevent="toggleExpanded" title="Expand">
|
||||
<i class="button-icon icon-plus-squared"></i>
|
||||
</a>
|
||||
|
|
Loading…
Reference in a new issue