Fix: the Display when the knowledge base empty. (#4496)
### What problem does this PR solve? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
parent
57b4e0c464
commit
961e8c4980
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ const KnowledgeList = () => {
|
|||
next={fetchNextPage}
|
||||
hasMore={hasNextPage}
|
||||
loader={<Skeleton avatar paragraph={{ rows: 1 }} active />}
|
||||
endMessage={total && <Divider plain>{t('noMoreData')} 🤐</Divider>}
|
||||
endMessage={!!total && <Divider plain>{t('noMoreData')} 🤐</Divider>}
|
||||
scrollableTarget="scrollableDiv"
|
||||
>
|
||||
<Flex
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue