mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 12:56:13 +00:00
fix(plugin-error-handler): no error message
This commit is contained in:
parent
9038d111ea
commit
8f64061e65
@ -27,7 +27,7 @@ export class PluginErrorHandler extends Plugin {
|
||||
const model = instance.constructor;
|
||||
const collection = this.db.modelCollection.get(model);
|
||||
const field = collection.getField(path);
|
||||
const fieldOptions = Schema.compile(field.options, { t: tFunc });
|
||||
const fieldOptions = Schema.compile(field?.options, { t: tFunc });
|
||||
const title = lodash.get(fieldOptions, 'uiSchema.title', path);
|
||||
return title;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user