Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-09-16 12:30:55 +0300
committerJoas Schilling <coding@schilljs.com>2021-09-16 12:30:55 +0300
commit7d09202428aaa99187ebb59014da806f35bf25e3 (patch)
tree6975e6257ae7687969d9c28b490ca3b85cacaf74 /src
parent16259c7ecd2f165a3a7d12fee2ac10bd0b80cfa6 (diff)
Fix eslint warning
src/components/LobbyScreen.vue 43:34 warning Expected 1 line break after opening tag (`<p>`), but no line breaks found vue/singleline-html-element-content-newline 43:64 warning Expected 1 line break before closing tag (`</p>`), but no line breaks found vue/singleline-html-element-content-newline Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/LobbyScreen.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/LobbyScreen.vue b/src/components/LobbyScreen.vue
index 1ae3a0275..383f59755 100644
--- a/src/components/LobbyScreen.vue
+++ b/src/components/LobbyScreen.vue
@@ -40,7 +40,9 @@
</span>
</p>
- <p class="lobby__description">{{ conversation.description }}</p>
+ <p class="lobby__description">
+ {{ conversation.description }}
+ </p>
</div>
<SetGuestUsername v-if="currentUserIsGuest" />
</div>