diff options
Diffstat (limited to 'src/components/rich_content/rich_content.jsx')
| -rw-r--r-- | src/components/rich_content/rich_content.jsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx index a5c010de..7bff23cd 100644 --- a/src/components/rich_content/rich_content.jsx +++ b/src/components/rich_content/rich_content.jsx @@ -19,7 +19,8 @@ export default Vue.component('RichContent', { }, render (h) { const renderImage = (tag) => { - return <StillImage {...{ attrs: getAttrs(tag) }} /> + const attrs = getAttrs(tag) + return <StillImage {...{ attrs }} class="img"/> } const structure = convertHtml(this.html) const processItem = (item) => { @@ -30,7 +31,7 @@ export default Vue.component('RichContent', { this.emoji, ({ shortcode, url }) => { return <StillImage - class="emoji" + class="emoji img" src={url} title={`:${shortcode}:`} alt={`:${shortcode}:`} @@ -56,8 +57,8 @@ export default Vue.component('RichContent', { } } } - return <div> + return <span class="RichContent"> { structure.map(processItem) } - </div> + </span> } }) |
