Feat: Display document parsing status #3221 (#7241)

### What problem does this PR solve?

Feat: Display document parsing status #3221
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-04-24 11:45:37 +08:00
committed by GitHub
parent 216cd7474b
commit ff442c48b5
14 changed files with 794 additions and 48 deletions

View File

@ -23,6 +23,7 @@ export function ConfirmDeleteDialog({
children,
title,
onOk,
onCancel,
hidden = false,
}: IProps & PropsWithChildren) {
const { t } = useTranslation();
@ -48,7 +49,9 @@ export function ConfirmDeleteDialog({
</AlertDialogDescription> */}
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>{t('common.cancel')}</AlertDialogCancel>
<AlertDialogCancel onClick={onCancel}>
{t('common.cancel')}
</AlertDialogCancel>
<AlertDialogAction
className="bg-colors-background-functional-solid-danger text--colors-text-neutral-strong"
onClick={onOk}