@node-projects/web-component-designer-visualization-addons 0.1.101 → 0.1.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -379,7 +379,9 @@ export class ScriptSystem {
379
379
  let results = await Promise.all(parsed.signals.map(x => this.getStateOrFieldOrParameter(this.getSignaName(x, context), context)));
380
380
  let nm = parsed.parts[0];
381
381
  for (let i = 0; i < parsed.parts.length - 1; i++) {
382
- let v = results[i].val;
382
+ let v = results[i];
383
+ if (typeof v === 'object')
384
+ v = v.val;
383
385
  if (v == null)
384
386
  v = '';
385
387
  nm += v + parsed.parts[i + 1];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "description": "web-component-designer addon for visualizations",
3
3
  "name": "@node-projects/web-component-designer-visualization-addons",
4
- "version": "0.1.101",
4
+ "version": "0.1.102",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",