Minor fixes for copy and spacing
This commit is contained in:
parent
6ad52e1426
commit
39c63cf56f
3 changed files with 9 additions and 4 deletions
|
@ -241,6 +241,7 @@
|
|||
"SUBJECT": "Subject"
|
||||
},
|
||||
"CONVERSATION_WATCHERS": {
|
||||
"SIDEBAR_TITLE": "Conversation watchers",
|
||||
"NO_RECORDS_FOUND": "No results found",
|
||||
"ADD_WATCHERS": "Select watchers",
|
||||
"REMANING_WATCHERS_TEXT": "+%{count} others",
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
class="conversation--actions"
|
||||
>
|
||||
<accordion-item
|
||||
title="Conversation Participants"
|
||||
:title="$t('CONVERSATION_WATCHERS.SIDEBAR_TITLE')"
|
||||
:is-open="isContactSidebarItemOpen('is_conv_participants_open')"
|
||||
@click="
|
||||
value =>
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
<div class="subscribers--collapsed">
|
||||
<div class="content-wrap">
|
||||
<div>
|
||||
<p v-if="watchersList.length" class="total-watchers">
|
||||
<p v-if="watchersList.length" class="total-watchers message-text">
|
||||
<spinner v-if="watchersUiFlas.isFetching" size="tiny" />
|
||||
{{ totalWatchersText }}
|
||||
</p>
|
||||
<p v-else class="text-muted">
|
||||
<p v-else class="text-muted message-text">
|
||||
{{ $t('CONVERSATION_WATCHERS.NO_WATCHERS_TEXT') }}
|
||||
</p>
|
||||
</div>
|
||||
|
@ -28,7 +28,7 @@
|
|||
:show-more-thumbnails-count="showMoreThumbs"
|
||||
:users-list="thumbnailList"
|
||||
/>
|
||||
<p v-if="isUserWatching" class="text-muted">
|
||||
<p v-if="isUserWatching" class="text-muted message-text">
|
||||
{{ $t('CONVERSATION_WATCHERS.YOU_ARE_WATCHING') }}
|
||||
</p>
|
||||
<woot-button
|
||||
|
@ -273,4 +273,8 @@ export default {
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.message-text {
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue