Adding filter capacities to api client and server

This commit is contained in:
2025-01-20 16:08:42 +01:00
parent 35448385c5
commit 0a4bec62c1
7 changed files with 32 additions and 36 deletions

View File

@@ -10,6 +10,6 @@ export default function CrudTextWidget<T = any, S extends StrictRJSFSchema = RJS
if (props.schema.hasOwnProperty("foreign_key")) {
return (<ForeignKeyWidget {...props} />);
}else {
return (<CrudTextWidget {...props} />);
return (<TextWidget {...props} />);
}
}
}