add/remove key

This commit is contained in:
j 2020-11-26 20:25:57 +01:00
parent 3a68a85172
commit 8ad02fb30d
2 changed files with 13 additions and 0 deletions

View File

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

View File

@ -714,6 +714,12 @@ pandora.ui.infoView = function(data, isMixed) {
})
.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);
}