diff --git a/modules/ui/field.js b/modules/ui/field.js index 856b9e41a..822fd5818 100644 --- a/modules/ui/field.js +++ b/modules/ui/field.js @@ -69,6 +69,14 @@ export function uiField(context, presetField, entity, options) { function isPresent() { return _some(field.keys, function(key) { + if (field.type === 'multiCombo') { + for (var tagKey in _tags) { + if (tagKey.indexOf(key) === 0) { + return true; + } + } + return false; + } return _tags[key] !== undefined; }); }