Pārlūkot izejas kodu

Fix: graphknowledge Tree structure not found for treeKey: combo (#7819) (#8862)

### What problem does this PR solve?

Fixed graphknowledge Tree structure not found for treeKey.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.20.0
wwwlll pirms 3 mēnešiem
vecāks
revīzija
9bd2127ba1
Revīzijas autora e-pasta adrese nav piesaistīta nevienam kontam

+ 3
- 1
web/src/pages/add-knowledge/components/knowledge-graph/util.ts Parādīt failu

@@ -86,7 +86,9 @@ export const buildNodesAndCombos = (nodes: any[]) => {
const nextNodes = nodes.map((x) => {
return {
...x,
combo: combos.find((y) => y.data.label === findCombo(x?.communities))?.id,
combo:
combos.find((y) => y.data.label === findCombo(x?.communities))?.id ??
null,
};
});


Notiek ielāde…
Atcelt
Saglabāt