diff --git a/packages/plugins/@hera/plugin-core/src/client/schema-settings/index.tsx b/packages/plugins/@hera/plugin-core/src/client/schema-settings/index.tsx index 05b8e05a3..1fabdf595 100644 --- a/packages/plugins/@hera/plugin-core/src/client/schema-settings/index.tsx +++ b/packages/plugins/@hera/plugin-core/src/client/schema-settings/index.tsx @@ -242,7 +242,10 @@ export const usePaginationVisible = () => { export const useSetFilterScopeVisible = () => { const fieldSchema = useFieldSchema(); - return fieldSchema['x-component-props']?.useProps === '{{ useFilterBlockActionProps }}'; + return ( + fieldSchema['x-component-props']?.useProps === '{{ useFilterBlockActionProps }}' || + fieldSchema['x-use-component-props'] === 'useFilterBlockActionProps' + ); }; export const EditTitle = () => {