mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
mass update: do not list disabled fields
This commit is contained in:
@@ -110,7 +110,10 @@ class MassUpdateModalView extends ModalView {
|
||||
this.fieldList = [];
|
||||
|
||||
layout.forEach(field => {
|
||||
if (forbiddenList.includes(field)) {
|
||||
if (
|
||||
forbiddenList.includes(field) ||
|
||||
this.getMetadata().get(`entityDefs.${this.entityType}.fields.${field}.disabled`)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user