Feat: Add the WaitingDialogue operator. #3221 (#7862)

### What problem does this PR solve?

Feat: Add the WaitingDialogue operator. #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-05-26 19:36:49 +08:00
committed by GitHub
parent add4b13856
commit 48294e624c
6 changed files with 107 additions and 4 deletions

View File

@ -40,7 +40,7 @@ interface IProps {
showModal(index: number, record: BeginQuery): void;
}
export function QueryTable({ data, deleteRecord, showModal }: IProps) {
export function QueryTable({ data = [], deleteRecord, showModal }: IProps) {
const { t } = useTranslation();
const [sorting, setSorting] = React.useState<SortingState>([]);