aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/helpApp/src/services/helpService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/helpApp/src/services/helpService.ts')
-rw-r--r--sdnr/wt/odlux/apps/helpApp/src/services/helpService.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/helpApp/src/services/helpService.ts b/sdnr/wt/odlux/apps/helpApp/src/services/helpService.ts
index 800e0b47f..aa0b0ed43 100644
--- a/sdnr/wt/odlux/apps/helpApp/src/services/helpService.ts
+++ b/sdnr/wt/odlux/apps/helpApp/src/services/helpService.ts
@@ -29,6 +29,7 @@ class HelpService {
return Object.keys(col).reduce <TocTreeNode[]>((acc, key) => {
const current = col[key];
acc.push({
+ id: key,
label: current.label,
uri: current.versions.current.path,
nodes: current.nodes && mapNodesCollection(current.nodes) || undefined