开发: 修改文字超出, 多个已删除节点

This commit is contained in:
zhengw
2023-04-21 15:19:06 +08:00
parent 74bca77fd5
commit e926e4cde0
2 changed files with 2 additions and 48 deletions

View File

@@ -42,6 +42,7 @@
.chatAMsg {
display: flex;
flex: 1;
flex-shrink: 0;
align-items: flex-start;
min-width: 0;
padding-left: 12px;
@@ -49,6 +50,7 @@
.chatAName {
flex: 1;
flex-shrink: 0;
width: 100%;
min-width: 0;
overflow: hidden;
font-size: 16px;

View File

@@ -420,30 +420,6 @@ const ChatLogs: React.FC = () => {
</div>
)}
<div
className={`${styles.delFollowList} ${
delFollowListShow ? styles.delFollowListShow : ''
}`}
>
<div
className={styles.delFollowListBar}
onClick={() => {
setDelFollowListShow(!delFollowListShow);
}}
>
<span></span>
{delFollowListShow ? <UpOutlined /> : <DownOutlined />}
</div>
<div
className={`${styles.delFollowListBox} ${
delFollowListShow ? styles.delFollowListBoxShow : ''
}`}
>
{custFollowsList.map((item) => {
return item.state == 1 ? null : custFollowsListItem(item);
})}
</div>
</div>
</>
);
} else {
@@ -458,30 +434,6 @@ const ChatLogs: React.FC = () => {
</div>
)}
<div
className={`${styles.delFollowList} ${
delGroupListShow ? styles.delFollowListShow : ''
}`}
>
<div
className={styles.delFollowListBar}
onClick={() => {
setDelGroupListShow(!delGroupListShow);
}}
>
<span></span>
{delGroupListShow ? <UpOutlined /> : <DownOutlined />}
</div>
<div
className={`${styles.delFollowListBox} ${
delGroupListShow ? styles.delFollowListBoxShow : ''
}`}
>
{groupList.map((item) => {
return item.state == 1 ? null : groupListItem(item);
})}
</div>
</div>
</>
);
}