always show posts in admin view
This commit is contained in:
parent
4b6f7d15e8
commit
6a09e5c534
2 changed files with 34 additions and 32 deletions
|
|
@ -131,40 +131,41 @@ const Status = {
|
||||||
Quote: defineAsyncComponent(() => import('src/components/quote/quote.vue')),
|
Quote: defineAsyncComponent(() => import('src/components/quote/quote.vue')),
|
||||||
StatusActionButtons,
|
StatusActionButtons,
|
||||||
},
|
},
|
||||||
props: [
|
props: {
|
||||||
'statusoid',
|
statusoid: Object,
|
||||||
'replies',
|
replies: Array,
|
||||||
|
|
||||||
'expandable',
|
expandable: Boolean,
|
||||||
'focused',
|
focused: Boolean,
|
||||||
'highlight',
|
highlight: Boolean,
|
||||||
'compact',
|
compact: Boolean,
|
||||||
'isPreview',
|
isPreview: Boolean,
|
||||||
'noHeading',
|
noHeading: Boolean,
|
||||||
'inlineExpanded',
|
inlineExpanded: Boolean,
|
||||||
'showPinned',
|
showPinned: Boolean,
|
||||||
'inProfile',
|
inProfile: Boolean,
|
||||||
'inConversation',
|
inConversation: Boolean,
|
||||||
'inQuote',
|
inQuote: Boolean,
|
||||||
'profileUserId',
|
|
||||||
'simpleTree',
|
|
||||||
'showOtherRepliesAsButton',
|
|
||||||
'dive',
|
|
||||||
'ignoreMute',
|
|
||||||
|
|
||||||
'controlledThreadDisplayStatus',
|
profileUserId: String,
|
||||||
'controlledToggleThreadDisplay',
|
simpleTree: Boolean,
|
||||||
'controlledShowingTall',
|
showOtherRepliesAsButton: Boolean,
|
||||||
'controlledToggleShowingTall',
|
dive: Function,
|
||||||
'controlledExpandingSubject',
|
ignoreMute: Boolean,
|
||||||
'controlledToggleExpandingSubject',
|
|
||||||
'controlledShowingLongSubject',
|
controlledThreadDisplayStatus: String,
|
||||||
'controlledToggleShowingLongSubject',
|
controlledToggleThreadDisplay: Function,
|
||||||
'controlledReplying',
|
controlledShowingTall: Boolean,
|
||||||
'controlledToggleReplying',
|
controlledToggleShowingTall: Function,
|
||||||
'controlledMediaPlaying',
|
controlledExpandingSubject: Boolean,
|
||||||
'controlledSetMediaPlaying',
|
controlledToggleExpandingSubject: Function,
|
||||||
],
|
controlledShowingLongSubject: Boolean,
|
||||||
|
controlledToggleShowingLongSubject: Function,
|
||||||
|
controlledReplying: Boolean,
|
||||||
|
controlledToggleReplying: Function,
|
||||||
|
controlledMediaPlaying: Boolean,
|
||||||
|
controlledSetMediaPlaying: Function,
|
||||||
|
},
|
||||||
emits: ['goto', 'toggleExpanded'],
|
emits: ['goto', 'toggleExpanded'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,7 @@
|
||||||
:statusoid="item"
|
:statusoid="item"
|
||||||
:in-conversation="false"
|
:in-conversation="false"
|
||||||
:focused="false"
|
:focused="false"
|
||||||
|
ignore-mute
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</List>
|
</List>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue