mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
skip select column if hidden and no settings
This commit is contained in:
@@ -92,6 +92,10 @@ class SelectProvider {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!settings && item.hidden) {
|
||||
return;
|
||||
}
|
||||
|
||||
const field = item.name;
|
||||
const type = this.metadata.get(`entityDefs.${entityType}.fields.${field}.type`);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user