decode group name

This commit is contained in:
j 2021-09-15 13:42:03 +02:00
parent 4ca42a041a
commit 61103f083b
1 changed files with 2 additions and 2 deletions

View File

@ -224,9 +224,9 @@ pandora.ui.documentInfoView = function(data, isMixed) {
(data[key] ? pandora.api.findEntities : Ox.noop)({
query: {
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: '&'
},