lint
This commit is contained in:
parent
5970ddf9ac
commit
35dedf8416
2 changed files with 7 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
|||
<template>
|
||||
<div
|
||||
ref="root"
|
||||
v-click-outside="onClickOutside"
|
||||
class="emoji-input"
|
||||
:class="{ 'with-picker': !hideEmojiButton }"
|
||||
ref='root'
|
||||
>
|
||||
<slot />
|
||||
<template v-if="enableEmojiPicker">
|
||||
|
|
|
@ -8,9 +8,10 @@
|
|||
>
|
||||
<RichContent
|
||||
class="media-body summary"
|
||||
@click.prevent="linkClicked"
|
||||
:html="status.summary_raw_html"
|
||||
:emoji="status.emojis"/>
|
||||
:emoji="status.emojis"
|
||||
@click.prevent="linkClicked"
|
||||
/>
|
||||
<button
|
||||
v-if="longSubject && showingLongSubject"
|
||||
class="button-unstyled -link tall-subject-hider"
|
||||
|
@ -43,9 +44,10 @@
|
|||
v-if="!hideSubjectStatus"
|
||||
:class="{ 'single-line': singleLine }"
|
||||
class="status-content media-body"
|
||||
@click.prevent="linkClicked"
|
||||
:html="postBodyHtml"
|
||||
:emoji="status.emojis"/>
|
||||
:emoji="status.emojis"
|
||||
@click.prevent="linkClicked"
|
||||
/>
|
||||
<button
|
||||
v-if="hideSubjectStatus"
|
||||
class="button-unstyled -link cw-status-hider"
|
||||
|
|
Loading…
Reference in a new issue