novoros24ru Is it possible to make the icon appear in the same way as the views?
The icon is hidden in the mobile view. If you need it, you can use this CSS code.
Customize Font Awesome to the version you are using !
.DiscussionListItem-count:before {
-moz-osx-font-smoothing:grayscale;
-webkit-font-smoothing:antialiased;
display:var(--fa-display, inline-block);
font-style:normal;
font-variant:normal;
text-rendering:auto;
line-height:1;
font-family:'Font Awesome 6 Free';
font-weight:400;
content:"\f075";
float:left;
margin-left:-21px;
margin-top:3px
}
However, there will be an overlap with long discussion titles.