|
@@ -278,21 +278,25 @@ const NewestLibrary: React.FC = props => {
|
|
|
</div>
|
|
|
)} */}
|
|
|
{tagData && tagData?.List1?.length > 0 && (
|
|
|
- <div className={styles['newestindex-label-wrapper']}>
|
|
|
- {tagData?.List1?.map((item: string, index: number) => (
|
|
|
- <div className={handleIncludeIds(item)} key={index} onClick={handleClickTag.bind(this, item, 'activity')}>
|
|
|
- {item}
|
|
|
- </div>
|
|
|
- ))}
|
|
|
+ <div className="m-r-md g-inline-block">
|
|
|
+ <div className={styles['newestindex-label-wrapper']}>
|
|
|
+ {tagData?.List1?.map((item: string, index: number) => (
|
|
|
+ <div className={handleIncludeIds(item)} key={index} onClick={handleClickTag.bind(this, item, 'activity')}>
|
|
|
+ {item}
|
|
|
+ </div>
|
|
|
+ ))}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
)}
|
|
|
{tagData && tagData?.List2?.length > 0 && (
|
|
|
- <div className={styles['newestindex-label-wrapper']}>
|
|
|
- {tagData?.List2?.map((item: string, index: number) => (
|
|
|
- <div className={handleIncludeIds(item)} key={index} onClick={handleClickTag.bind(this, item, 'activity')}>
|
|
|
- {item}
|
|
|
- </div>
|
|
|
- ))}
|
|
|
+ <div className="g-inline-block">
|
|
|
+ <div className={styles['newestindex-label-wrapper']}>
|
|
|
+ {tagData?.List2?.map((item: string, index: number) => (
|
|
|
+ <div className={handleIncludeIds(item)} key={index} onClick={handleClickTag.bind(this, item, 'activity')}>
|
|
|
+ {item}
|
|
|
+ </div>
|
|
|
+ ))}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
)}
|
|
|
{tagData && tagData?.List3?.length > 0 && (
|
|
@@ -308,7 +312,7 @@ const NewestLibrary: React.FC = props => {
|
|
|
))}
|
|
|
</div>
|
|
|
)}
|
|
|
- <div className="m-t-sm">
|
|
|
+ <div>
|
|
|
<MasonryContainer
|
|
|
loadMore={handleLoadMoreData}
|
|
|
hasMore={hasMore}
|