aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux
diff options
context:
space:
mode:
authorherbert <herbert.eiselt@highstreet-technologies.com>2020-03-06 19:17:25 +0100
committerherbert <herbert.eiselt@highstreet-technologies.com>2020-03-06 19:18:03 +0100
commit10972f1312606d3184dcd1dba882cd2219878277 (patch)
tree90cc0939fe092b640dc5de290ae38845e2dfb1c4 /sdnr/wt/odlux
parentfc05c3c97e4591e09403ecd24d33341975f6d411 (diff)
Fix behavior of config app
behavior for list without key of config app Issue-ID: SDNC-1111 Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com> Change-Id: I7984efc9d2101ff9480e8361cd34a31c61c81b79
Diffstat (limited to 'sdnr/wt/odlux')
-rw-r--r--sdnr/wt/odlux/apps/configurationApp/src/yang/yangParser.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/sdnr/wt/odlux/apps/configurationApp/src/yang/yangParser.ts b/sdnr/wt/odlux/apps/configurationApp/src/yang/yangParser.ts
index 5322e1f6f..27859f7b6 100644
--- a/sdnr/wt/odlux/apps/configurationApp/src/yang/yangParser.ts
+++ b/sdnr/wt/odlux/apps/configurationApp/src/yang/yangParser.ts
@@ -650,12 +650,14 @@ export class YangParser {
const lists = this.extractNodes(statement, "list");
if (lists && lists.length > 0) {
subViews.push(...lists.reduce<ViewSpecification[]>((acc, cur) => {
+ let elmConfig = config;
if (!cur.arg) {
throw new Error(`Module: [${context.name}]${currentPath}. Found list without name.`);
}
const key = this.extractValue(cur, "key") || undefined;
- if (config && !key) {
- throw new Error(`Module: [${context.name}]${currentPath}. Found configurable list without key.`);
+ if (elmConfig && !key) {
+ console.error(new Error(`Module: [${context.name}]${currentPath}. Found configurable list without key.`));
+ elmConfig = false;
}
const [currentView, subViews] = this.extractSubViews(cur, currentId, context, `${currentPath}/${context.name}:${cur.arg}`);
elements.push({
@@ -665,7 +667,7 @@ export class YangParser {
uiType: "object",
viewId: currentView.id,
key: key,
- config: config
+ config: elmConfig
});
acc.push(currentView, ...subViews);
return acc;