fix(knowledge-base): regenerate child chunks not working completely (#27934)

This commit is contained in:
breath57
2025-11-13 15:36:27 +08:00
committed by GitHub
parent 667b1c37a3
commit 45e816a9f6
3 changed files with 17 additions and 4 deletions

View File

@@ -121,7 +121,7 @@ const RegenerationModal: FC<IRegenerationModalProps> = ({
})
return (
<Modal isShow={isShow} onClose={noop} className='!max-w-[480px] !rounded-2xl'>
<Modal isShow={isShow} onClose={noop} className='!max-w-[480px] !rounded-2xl' wrapperClassName='!z-[10000]'>
{!loading && !updateSucceeded && <DefaultContent onCancel={onCancel} onConfirm={onConfirm} />}
{loading && !updateSucceeded && <RegeneratingContent />}
{!loading && updateSucceeded && <RegenerationCompletedContent onClose={onClose} />}