diff options
| author | Henry Jameson <me@hjkos.com> | 2021-06-11 03:11:58 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-06-11 03:11:58 +0300 |
| commit | f883d2f75cd3c404115bd2c98b6d3c8d7ff10ef6 (patch) | |
| tree | 1cfb6499bc5ffc5eb246fb1b270191926681b414 /src/components/status_content/status_content.js | |
| parent | b84aeff6bf288b6e5855c2be0fd78577a0f7c0e5 (diff) | |
better handling of hellthreads with mentions at bottom
Diffstat (limited to 'src/components/status_content/status_content.js')
| -rw-r--r-- | src/components/status_content/status_content.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/status_content/status_content.js b/src/components/status_content/status_content.js index 64cc6d44..11a4974b 100644 --- a/src/components/status_content/status_content.js +++ b/src/components/status_content/status_content.js @@ -32,9 +32,7 @@ const StatusContent = { 'noHeading', 'fullContent', 'singleLine', - 'hideFirstMentions', - 'hideLastMentions', - 'headTailLinks' + 'hideMentions' ], computed: { hideAttachments () { @@ -94,6 +92,9 @@ const StatusContent = { StatusBody }, methods: { + setHeadTailLinks (headTailLinks) { + this.$emit('parseReady', headTailLinks) + }, setMedia () { const attachments = this.attachmentSize === 'hide' ? this.status.attachments : this.galleryAttachments return () => this.$store.dispatch('setMedia', attachments) |
