Feat: merge the begin operator's url and file into one field #3355 (#3521)

### What problem does this PR solve?

Feat: merge the begin operator's url and file into one field #3355
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-11-20 16:35:21 +08:00
committed by Yingfeng Zhang
parent 9b4c2868bd
commit 4d42bcd517
3 changed files with 50 additions and 111 deletions

View File

@ -45,7 +45,6 @@ import {
import upperFirst from 'lodash/upperFirst';
import {
CloudUpload,
Link2,
ListOrdered,
OptionIcon,
TextCursorInput,
@ -2876,7 +2875,6 @@ export enum BeginQueryType {
File = 'file',
Integer = 'integer',
Boolean = 'boolean',
Url = 'url',
}
export const BeginQueryTypeIconMap = {
@ -2886,5 +2884,4 @@ export const BeginQueryTypeIconMap = {
[BeginQueryType.File]: CloudUpload,
[BeginQueryType.Integer]: ListOrdered,
[BeginQueryType.Boolean]: ToggleLeft,
[BeginQueryType.Url]: Link2,
};