mirror of
https://github.com/inventree/InvenTree.git
synced 2026-02-19 13:18:03 +00:00
[UI] Log Form error (#11363)
* [UI] Log console error for invalid field - Help catch form issues during CI * Use console logging
This commit is contained in:
@@ -241,6 +241,11 @@ export function ApiFormField({
|
||||
/>
|
||||
);
|
||||
default:
|
||||
// This should never happen - it represents a critical UI issue which should be caught in CI
|
||||
console.error(
|
||||
`Invalid field type for field '${fieldName}': '${fieldDefinition.field_type}'`
|
||||
);
|
||||
|
||||
return (
|
||||
<Alert color='red' title={t`Error`}>
|
||||
Invalid field type for field '{fieldName}': '
|
||||
|
||||
Reference in New Issue
Block a user