This commit is contained in:
rlx 2018-08-09 17:23:47 +01:00
parent b57676650c
commit db1fcd8425
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ pandora.ui.manageKeywordsDialog = function() {
function getOntology(callback) {
function parseNodes(parents, nodes) {
parsed = []
let parsed = []
Object.keys(nodes).forEach(function(name) {
let fullName = parents ? parents + ': ' + name : name
let children = parseNodes(fullName, nodes[name])