Refactor the React OpenAPI admin framework to support fully customizable field rendering and UI composition. #11

Merged
aetos merged 15 commits from common-fields into main 2026-06-07 12:35:53 +00:00
Showing only changes of commit 76c6b246ce - Show all commits

View File

@@ -212,13 +212,6 @@ function renderFilterInput(
);
}
const FormFieldComponent = fieldComponents?.FormField;
if (FormFieldComponent) {
return (
<FormFieldComponent name={fieldName} field={field} value={value} onChange={(val: any) => onChange("value", val)} />
);
}
const selected = Array.isArray(value) ? value : [];
return (