update info view

This commit is contained in:
Rolux 2015-09-21 17:38:41 +01:00
parent 2cf2d4efa1
commit 121fbe54b5
1 changed files with 2 additions and 2 deletions

View File

@ -312,7 +312,7 @@ pandora.ui.infoView = function(data) {
}
})
.appendTo($div);
if (canEdit || data[key + 'description']) {
if (key == 'collection' && (canEdit || data[key + 'description'])) {
$('<div>')
.append(
descriptions[key] = Ox.EditableContent({
@ -338,7 +338,7 @@ pandora.ui.infoView = function(data) {
).css({
margin: '12px 0',
})
.appendTo($div);
.appendTo($text);
}
}
});