decode group name

This commit is contained in:
j 2021-09-15 13:42:03 +02:00
parent 4ca42a041a
commit 61103f083b

View file

@ -224,9 +224,9 @@ pandora.ui.documentInfoView = function(data, isMixed) {
(data[key] ? pandora.api.findEntities : Ox.noop)({ (data[key] ? pandora.api.findEntities : Ox.noop)({
query: { query: {
conditions: [{ conditions: [{
key: 'type', operator: '==', value: key key: 'type', operator: '==', value: Ox.decodeHTMLEntities(key)
}, { }, {
key: 'name', operator: '==', value: data[key] key: 'name', operator: '==', value: Ox.decodeHTMLEntities(data[key])
}], }],
operator: '&' operator: '&'
}, },