与会嘉宾平铺

This commit is contained in:
黄心宇 2023-10-10 14:44:07 +08:00
parent 33090a9ec5
commit dfb466ca53
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ function Member(props) {
</div>
{
topics.length > 0 ?
<Carousel className="member-list">
<div className="member-list">
{
topics.map((e, k) => {
return <div key={ k }>
@ -54,7 +54,7 @@ function Member(props) {
</div>
})
}
</Carousel>:
</div>:
<img className="empty" src={ empty } alt="" />
}
</div>