add/remove button for mixed fields

This commit is contained in:
j 2023-07-27 14:05:22 +02:00
parent 7bb2fd690b
commit 1e4b59e746

View file

@ -707,6 +707,13 @@ pandora.ui.infoView = function(data, isMixed) {
} }
}) })
.appendTo($element); .appendTo($element);
if (isMixed[key] && Ox.contains(listKeys, key)) {
pandora.ui.addRemoveKeyDialog({
ids: ui.listSelection,
key: key,
section: ui.section
}).appendTo($element)
}
} }
}); });
$element.appendTo($text); $element.appendTo($text);