diff options
| author | Henry Jameson <me@hjkos.com> | 2020-08-04 19:16:55 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-08-04 19:16:55 +0300 |
| commit | dce057f24ec7b8ea6806210c97a4bf2c65584cc2 (patch) | |
| tree | f176aac118bcefbd2875190dbae0584f31f24030 | |
| parent | 839681bbc70c87110625af11e5a8b5593b59136e (diff) | |
lint
| -rw-r--r-- | src/components/poll/poll.vue | 2 | ||||
| -rw-r--r-- | src/components/status/status.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/poll/poll.vue b/src/components/poll/poll.vue index adbb0555..ceba9eea 100644 --- a/src/components/poll/poll.vue +++ b/src/components/poll/poll.vue @@ -17,7 +17,7 @@ <span class="result-percentage"> {{ percentageForOption(option.votes_count) }}% </span> - <span v-html="option.title_html"></span> + <span v-html="option.title_html" /> </div> <div class="result-fill" diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 8df82edc..45251f17 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -150,8 +150,8 @@ {{ status.user.screen_name }} </router-link> <img - class="status-favicon" v-if="!!(status.user && status.user.favicon)" + class="status-favicon" :src="status.user.favicon" > </div> |
