Skip to content

Commit

Permalink
third line
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Jan 23, 2025
1 parent f87c4f2 commit 919a6dd
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions frontend/src/ChatList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@
<v-badge v-if="item.hasScreenShares" color="primary" icon="mdi-monitor-screenshot" inline class="mt-0" :title="$vuetify.locale.t('$vuetify.screen_share_in_process')"/>
<v-badge v-if="item.blog" color="grey" icon="mdi-postage-stamp" inline class="mt-0" :title="$vuetify.locale.t('$vuetify.blog')"/>
</v-list-item-title>
<v-list-item-subtitle :style="isSearchResult(item) ? {color: 'gray'} : {}" v-html="printParticipants(item)">
<v-list-item-subtitle :style="isSearchResult(item) ? {color: 'gray'} : {}" class="subtitle-thin my-1" v-html="printParticipants(item)">
</v-list-item-subtitle>
<v-list-item-subtitle class="subtitle-thin my-1">Nikita: Всем привет, на связи Василий Боровой и Иван Козловский – Flutter-разработчики из The Head. В этой статье хотим поделиться с вами опытом работы над YPay и YPay inventory для Flutter, рассказать про возможности библиотек и как их использовать, а также о проблемах, с которыми столкнулись.</v-list-item-subtitle>
</template>

<template v-slot:append v-if="!isMobile() && !embedded">
Expand Down Expand Up @@ -326,9 +327,11 @@ export default {
return item?.isResultFromSearch === true
},
getItemClass(item) {
return {
'pinned-bold': item.pinned,
}
if (item.pinned) {
return 'pinned-bold'
} else{
return 'chat-normal'
}
},
getChatName(item) {
let bldr = item.name;
Expand Down Expand Up @@ -847,6 +850,14 @@ export default {
@import "itemAvatar.styl"
.pinned-bold {
font-weight bold
font-weight 1000
}
.chat-normal {
font-weight 400
}
.subtitle-thin {
font-weight 300
}
</style>

0 comments on commit 919a6dd

Please sign in to comment.