eliminate expandable prop in favor of inConversation

このコミットが含まれているのは:
taehoon 2019-05-06 15:29:24 -04:00
コミット 1455e1f9d5
3個のファイルの変更1行の追加3行の削除

ファイルの表示

@ -13,7 +13,6 @@
:key="status.id"
:inlineExpanded="collapsable"
:statusoid="status"
:expandable='!isExpanded'
:focused="focused(status.id)"
:inConversation="isExpanded"
:highlight="getHighlight()"

ファイルの表示

@ -18,7 +18,6 @@ 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="expandable && !isPreview">
<template v-if="!inConversation && !isPreview">
<a href="#" @click.prevent="toggleExpanded" title="Expand">
<i class="button-icon icon-plus-squared"></i>
</a>