diff --git a/frontend/src/ChatList.vue b/frontend/src/ChatList.vue
index 55885e747..287e1cf90 100644
--- a/frontend/src/ChatList.vue
+++ b/frontend/src/ChatList.vue
@@ -37,8 +37,9 @@
-
+
+ Nikita: Всем привет, на связи Василий Боровой и Иван Козловский – Flutter-разработчики из The Head. В этой статье хотим поделиться с вами опытом работы над YPay и YPay inventory для Flutter, рассказать про возможности библиотек и как их использовать, а также о проблемах, с которыми столкнулись.
@@ -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;
@@ -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
}