feat: modify the name of an operator #918 (#1333)

### What problem does this PR solve?

feat: modify the name of an operator #918

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-07-01 17:12:04 +08:00
committed by GitHub
parent 92e9320657
commit 8b1c145e56
13 changed files with 117 additions and 40 deletions

View File

@ -54,7 +54,8 @@ export interface ICategorizeForm extends IGenerateForm {
}
export type NodeData = {
label: string;
label: string; // operator type
name: string; // operator name
color: string;
form: IBeginForm | IRetrievalForm | IGenerateForm | ICategorizeForm;
};