mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-12-02 04:07:50 +08:00
Merge branch 'main' into next
This commit is contained in:
commit
69033905bb
@ -79,6 +79,6 @@ export class MarkdownFieldInterface extends CollectionFieldInterface {
|
||||
};
|
||||
}
|
||||
filterable = {
|
||||
operators: operators.string,
|
||||
operators: operators.bigField,
|
||||
};
|
||||
}
|
||||
|
@ -184,7 +184,7 @@ export const collection = [
|
||||
{ label: '{{t("is not empty")}}', value: '$notEmpty', noValue: true },
|
||||
];
|
||||
|
||||
export const richText = [
|
||||
export const bigField = [
|
||||
{
|
||||
label: '{{t("contains")}}',
|
||||
value: '$includes',
|
||||
@ -218,6 +218,22 @@ export const richText = [
|
||||
'x-component': 'Input',
|
||||
},
|
||||
},
|
||||
{ label: '{{t("is empty")}}', value: '$empty', noValue: true },
|
||||
{ label: '{{t("is not empty")}}', value: '$notEmpty', noValue: true },
|
||||
{
|
||||
label: '{{t("is empty")}}',
|
||||
value: '$empty',
|
||||
noValue: true,
|
||||
schema: {
|
||||
type: 'string',
|
||||
'x-component': 'Input',
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '{{t("is not empty")}}',
|
||||
value: '$notEmpty',
|
||||
noValue: true,
|
||||
schema: {
|
||||
type: 'string',
|
||||
'x-component': 'Input',
|
||||
},
|
||||
},
|
||||
];
|
||||
|
@ -79,6 +79,6 @@ export class RichTextFieldInterface extends CollectionFieldInterface {
|
||||
};
|
||||
};
|
||||
filterable = {
|
||||
operators: operators.richText,
|
||||
operators: operators.bigField,
|
||||
};
|
||||
}
|
||||
|
@ -109,7 +109,7 @@ export class MarkdownVditorFieldInterface extends CollectionFieldInterface {
|
||||
}
|
||||
}
|
||||
filterable = {
|
||||
operators: operators.number,
|
||||
operators: operators.bigField,
|
||||
};
|
||||
titleUsable = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user