diff options
| author | shpuld <shp@cock.li> | 2019-04-01 22:42:06 +0300 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-04-01 22:42:06 +0300 |
| commit | 46de457f50416d0c8f37a833356b0b7ea643a53f (patch) | |
| tree | 2af3e96da21aee1e06f0eb6beff82c24770b7296 /src/components/status/status.js | |
| parent | 2879495b8ab16a07d337965871e951f660fc1815 (diff) | |
| parent | df366a586d6549b41d5537c57eb51c5f0f54a641 (diff) | |
Merge branch 'develop' into feature/mobile-improvements-3
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 550fe76f..0295cd04 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -251,6 +251,12 @@ const Status = { }, maxThumbnails () { return this.$store.state.config.maxThumbnails + }, + contentHtml () { + if (!this.status.summary_html) { + return this.status.statusnet_html + } + return this.status.summary_html + '<br />' + this.status.statusnet_html } }, components: { |
